Hello,
got two Questions
1) Is it possible to change the color from one specific Point in a Scatterchart?
2) How can I format the content of the Labels I have when I move with the mouse over a Point in my Scatterchart? (numeric Format ###,###,###,##0.00 is what I would need)
Thanks in advance for your help
Stefan
Works great, thanks for the quick answer.
HI Stefan,
you can try code like this:
{
this.UltraChart1.Data.DataSource = DemoTable.Table();
this.UltraChart1.Tooltips.FormatString = "<DATA_VALUE:###,###,###,##0.00>";
}
PointSet pointSet = primitive as PointSet;
// you should find the right point in the pointSet.points collection
Symbol symbol = new Symbol(dataPoint.point, pointSet.icon, pointSet.iconSize);
e.SceneGraph.Add(symbol);