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
975
Set Y axis value at desing time
posted

 

Hi,

On the Y Axis I am displaying percentage value.So I want to Set Y axis value 0  to 100 only. Is it possible at design time?

Parents
  • 17605
    Verified Answer
    posted

    You can try to use:

    this.ultraChart1.Axis.Y.RangeType = Infragistics.UltraChart.Shared.Styles.AxisRangeType.Custom;

    this.ultraChart1.Axis.Y.RangeMin = 0;

    this.ultraChart1.Axis.Y.RangeMax = 100;

Reply Children
No Data