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
35
Setting the Y Axis Start Point and End Point.
posted

Hi i want to set the Y axis start point as 0 and end point as 100.  How can i do that

 In below chart its automatically starts with min value in data source and ends with max value in datasource. 10 and 40.

 

Answer

UltraChart1.Axis.Y.RangeMin = 0;

UltraChart1.Axis.Y.RangeMax = 100;

UltraChart1.Axis.Y.RangeType = Infragistics.UltraChart.Shared.Styles.

 

AxisRangeType

.Custom;