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
180
Single Line across the chart
posted

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?