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?
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.
Thanks, I am able to place the axis on the right-hand side of the chart, but I am looking to draw the black line (circled in red on the left in the screen shot) that boxes off the chart itself from the axis next to the right-hand axis.