I've got a bar chart that is setup using the Series Grouping option:
chart.DataManager.ValuesYColumns = new string[1] { "Utilization" };
chart.DataManager.ValuesXColumn = "intervalAsNumeric";
chart.DataManager.UseSeriesGrouping = true;
chart.DataGroupColumn = "groupName";
Everything works great, but I'd like to be able to display the "Utilization" value (Y-Value) on the bar itself. To be clear, I've got the Utilization value that displays along the Y-axis, but I need a value that shows the value of the bar itself -- either on the bar or next to/above it. So far I've been unable to coerce the chart in to showing this. I've tried various properties, none of which work.
Is there someway to display this value?
Thanks