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
130
Range for string data on X-Axis
posted

Hi all,

I am new to Infragistics chart.

Can anyone please suggest how to set the range for X-axis showing string values. Please refer to the below snapshot. The space at the start of the X-axis

 

 It is in windows application(vb.net)

Thanks in advance

Santosh

Parents
No Data
Reply
  • 26458
    Offline posted

    You can do this by setting the following properties on chart.Axis.X:
    RangeMin = startIndex
    RangeMax = endIndex
    RangeType = AxisRangeType.Custom

    the string axis range is always from 0 to the number of points being displayed, plus the spaces between columns and series

Children