I have some charts where the customer wants to see the Values printed out with the Chart.
Is there a way to show the Value associated with each point(bar, cylinder, etc....) on a Chart? [other than Tooltip]
How do I code something like this? (C# please if possible)
[bump]
Anyone know how to show the values (for points, bars...) on a chart (without tooltip)?
I just want to see the data, so it gets printed out with the chart.
Add some ChartText. Set the Row and Column to -2 to match all points.
if you're using a column chart,
ChartTextAppearance chartText = new ChartTextAppearance(); chartText.Row = chartText.Column = -2; chartText.Visible = true; chartText.ItemFormatString = "<DATA_VALUE:0>"; this.ultraChart1.ColumnChart.ChartText.Add(chartText);