I want to develop a chart which displays real time values of CPU Freauency, temeprature and Power.
The chart should be similar to the chart in Performance Monitor (Perfmon.exe) tool comes with Windows.
In which X Axis should have the Time values and Y Axis have the actual data. Could you Please send me the detail example of it asap.
Thanks.
Hi,
Thank you for the reply. I have tried option 1), but that is not what I am looking for. In this option user has to manually click on scroll bar and avoid overlapping of the data points on X-axis.
I do not want user to do this. Can you please give me example of 2nd option?
Thanks!
Thanks for attached screenshot. I saw what you mean.
Maybe you could try one of these two options:
Option 1: Maybe one possible approach could be if you set property:
ScrollScale.Visible = true;
and
ScrollScale.Scale = = 0.2;
Option 2: This is more complicate approach to solve this task. In this scenario you should hanlde FillSceneGraph event and make offset to your Primitives in the chart.
Please let me know if you have any questions.
See the attached zip having the screenshot to see the the problem with the Composite chart example given by you.
Hello,
Thank you for the immediate reply.
The problem with this example is after some time the points on the X-axis will get saturate.
see the image for reference. Instead of adding the new time value on X-axis I want to update the existing points with the updated time value just like Perfmon.exe tool.
I made small sample for you. Could you please take a look at the attached sample for more details and let me know if you have any questions.
Regards