Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2085
How to display a right-hand axis tick line
posted

I have the chart above with a left and right y axis and a date time category for the x axis.  I want to draw an axis tick line as shown for the left-hand Y axis on the right-hand Y axis.  How can I do this?

Parents
No Data
Reply
  • 34810
    Offline posted

    Hello Gary,

    I have been investigating into your requirement in this case, and I believe the following NumericYAxis configuration should give you the result you are looking for in this case:

    <ig:NumericYAxis x:Name="yAxis" MinimumValue="0" MaximumValue="10" TickLength="8" Stroke="Black"/>
    
    <ig:NumericYAxis x:Name="yAxis2" MinimumValue="0" MaximumValue="10" TickLength="8" Stroke="Black">
      <ig:NumericYAxis.LabelSettings>
        <ig:AxisLabelSettings Location="OutsideRight"/>
      </ig:NumericYAxis.LabelSettings>
    </ig:NumericYAxis>

    Please let me know if you have any other questions or concerns on this matter.

Children