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
100
Chart Series in UltraDataChart
posted

Hello,

I'm working with UltraDataChart (Infragistics4.Win.DataVisualization.UltraDataChart.v18.1).

I made multi Series chart. one of the series datasource has sets of high and low data

and I want this chart displays like below image that i attached.

high - low value line and each edge of data has small horizontal bar.

but i can't find series displays like that. 

what series do i have to use? or how can i make this chart ?

  • 960
    Offline posted

    Hello,


    I'm afraid that there is no built-in series which can draw all at once the chart you want.


    But you can make it by using ScatterLineSeries.
    https://ko.infragistics.com/help/winforms/18.1/datachart-scatter-line-series

    You would need to prepare a pair of (x, y) coordinates which represent the starting point and ending point of each lines. For example, as the image has five vertical lines for data range, five horizontal lines for minimum value and five horizontal lines for maximum value, you would need to create data of five pairs of coordinates which represent each vertical line, five pairs of coordinates which represent each horizontal line for minimum value and five pairs of of coordinates which represent each horizontal line for maximum value. And then, add those pairs as a ScatterLineSeries for each to the ultraDataChart.

    I hope this will help.