i want to highlight the lowest and the highest datapoint with green and red bubble as shown below.
i have a composite webchart. i am trying to add 2 bubble series with a different chart area for each bubble series overlapping one on top of other. I want to know if there is a better solution to implement this logic.
Hi utkarsh,
Thank you for your reply.
Glad that your issue has been resolved.
Please feel free to contact me if I can be of further assistance.
Hi,
Thanks for the reply. Following worked for me
(Convert.ToDouble(_chartA3Max.ToString()).Equals(numericTimeDataPoint.NumericValue)) thanksutkarsh
The issue you are experiencing seems to be related to the way Doubles are handled in C#. A discussion on that topic can be found at:http://stackoverflow.com/questions/2105096/why-is-tostring-rounding-my-double-value
To summarize, I would suggest that you try accessing your data point's values using:
Debug.WriteLine(((Double) dataPoint.Value).ToString("G17"));
Please let me know if this helps.
Hi Peter,
i am facing a strange problem in the ultraChart_FillSceneGraph event of the chart.
there is problem with rounding in NumericTimeDataPoint
The Original value passed to the series data is :- 27.806478019718991
if i check the value in NumericTimeDataPoint.NumericValue in the ultraChart_FillSceneGraph event it shows me 27.806478019719
i am not getting why it is rounding of the number.
This is creating problem in finding the low an high point in the chart because of this internal rounding by the chart.
I need help ASAP. have to solve this issue urgently
Thanks
utkarsh
Hi utkarsh_bandekar,
Thank you for your reply. Glad that you were able to implement your requirement.
Please feel free to contact me if you have any additional questions.