Hi,
I have a column Chart. I have a requirement that a line should be drawn at Value 100 like below.
I tried doing this.
<igCA:Axis AxisType="PrimaryY" >
<igCA:Axis.MajorGridline>
<igCA:Mark Visible="False" />
</igCA:Axis.MajorGridline>
<igCA:Axis.MinorGridline>
<igCA:Mark Stroke="Green" Unit="100" />
</igCA:Axis.MinorGridline>
</igCA:Axis>
But it shows line at every 100s – 100, 200, 300 etc.
How do I get just a single line at value 100 as shown in the image?
Is there a way to mark the MajorGridline at 100 in Green color as a Dashed line?
you may want to try and do the threshold line as a line series instead, or a scatter line series if that works better. Normally you cant combine a column series with a scatter line series, but you could try a strategy like in this post: http://blogs.infragistics.com/forums/p/38203/220264.aspx#220264
-Graham