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
95
Manually set line chart y axis range value
posted

Hi,

I like to ask if we can manually set at design time the range value of the Line Chart Y axis such that it starts at 99.00 to 99.99. This is because we need to chart values that are within this range only.

Thanks in advance for any help you will provide.

Regards,

Marlon

Parents
  • 53790
    Verified Answer
    posted

    Hello Marlon,

    I`m not familira with your scenario, but there are different approaches to acheive desired behavior.  One possible approach could be if you are using properties of your Axis:

    axis1.RangeType =AxisRangeType.Custom;

    axis1.RangeMin = 10;

    axis1.RangeMax = 100;

     

    Depernding of your chart type you could use also properties:

    - TickmarkStyle

    - TickmarkInterval

    - TickmarkIntervalType and so on...

    I made small sample for you where I`m using line chart. Please take a look at the attached sample and let me know if you have any further questions.

    Regards

    CompositeLineChart_Year_2.zip
Reply Children
No Data