Hi,
I have a requirement like this.
Iam showing a chart in the dashboard.I have a chart gallery with all the chart types.
Based on the selected chart type my chart will getting changed
I have another option,like showing datapoint labels for my chart.If user clicks tht tool,then for the current chart(whatever may be the type),it should display the point labels.
But I think there is no such property to show the datapoints without bothering abt the chart type.
Tht property is specific to the chart like
this.ultraChart1.ColumnChart.ChartText[0].Visible = true;
Is there any property for showing the point labels,independent of the chart type.
Hi Manish,
I'm not sure where exactly you face a problem. If there is still a problem, please, let me know what is the exact scenario you want to achieve and what is not working for you. Thank you!
Hi
I also want to implement this type of requirement in my window based appliaction.Can u help me
Unfortunately, the ChartText is a property of every type chart appearance and can not be set independent of the chart type. You could just initially make the ChartText visible for all different chart type your chart supports and that way when you change the type, the chart text will be visible:
ultraChart1.AreaChart.ChartText.ChartText[0].Visible = true;ultraChart1.ColumnChart.ChartText.ChartText[0].Visible = true;ultraChart1.BarChart.ChartText.ChartText[0].Visible = true;.....
Let me know if you have any problems with it.