This question is locked. New answers and comments are not allowed.
Hello everyone, I have a problem with a stacked area chart.
I have a 12 Series chart with 5 points in each serie.
I would like to show a tooltip with the point information on mouse over.
I used (as I have done with Pie Chart)
ChartSeriesItem item = new ChartSeriesItem(serie.Value, serie.Definition);
item.ActiveRegion.Tooltip = string.Format("{0} - {1}", serie.Definition, serie.Value);
It seems to work but as I put the mouse just right the first point, the control shows the tooltip for the second point and so on...
during debug I saw that
radchart.series[0].items[0].ActiveRegion
has the correct value.
It also seems that the ActiveRegion for the StackedArea Chart for the point 2 starts from the very left side of point 2 and ends on the very right side of point 1.
In this situation I don't have the StackedArea from the very left of point 1...
Sorry for the bad English...
Thanks in advance.
Gabriele
I have a 12 Series chart with 5 points in each serie.
I would like to show a tooltip with the point information on mouse over.
I used (as I have done with Pie Chart)
ChartSeriesItem item = new ChartSeriesItem(serie.Value, serie.Definition);
item.ActiveRegion.Tooltip = string.Format("{0} - {1}", serie.Definition, serie.Value);
It seems to work but as I put the mouse just right the first point, the control shows the tooltip for the second point and so on...
during debug I saw that
radchart.series[0].items[0].ActiveRegion
has the correct value.
It also seems that the ActiveRegion for the StackedArea Chart for the point 2 starts from the very left side of point 2 and ends on the very right side of point 1.
In this situation I don't have the StackedArea from the very left of point 1...
Sorry for the bad English...
Thanks in advance.
Gabriele