Hi there,
We need to have a chart showing x -Axis with an interval of 10 seconds and after 6 such intervals the line is to be bolded, deneoting the minute.
Also, the label should appear only for the minute line on x- axis, that is - 2 labels are 6 blocks apart. (picture attached)
which properties of the xamDAtaChart can we use for this?
Also, how to specifiy the interval value for the Strip. (need to highlight an area beween specific values for Y - Axis).
Hi Nitingaur
Hi Martin
Thanks, the app works great. One thing i can`t understand though, i used a dispatcher to make it look like a real time data feed and provided data as well. The series moves but the x- axis stays as it is even after providing the different data.;
I mean the class that provides data for plotting of points also gives different data for x -Axis.. then why doesn`t this move with the series?
the data is in form of List<Row> in the attached application, please advise.
-adding time component to your historical data (see comments in the HistoricalData property of DataLoader class) or by
-updating the time component of Column0 when a new data row is added using values from historical data (see commented out code in the AddRecordsFromHistoricalData method of TickerBuffer class).
Either of proposed fixes above will generate the following chart and you will only need to set the Visibility property of the second CategoryXAxis object to Collapsed to hide labels on bottom axis in order to generate the chart that you requested in your original question.
- Martin