We're transposing data tables for pie charts (swap rows/columns) and our first row after transposition contains the name of the data series. This row seems to be ignored by UC/Pie (as would be expected), but we'd like to put it on the chart. Aside from creating a coded datasource and re-creating the wheel in code-behind, isn't there an easy way to reference that first row (column, before swap) and use it as a title, etc?
Thanks, Max. We'll try that. We were so busy looking for a <SERIES_LABEL> format item that would work in a title context that we ignored some of the obvious code-based solutions.
-Jason
I think the simplest solution would be to put the labels from the first row into a string array. You can then set that array to be used for row labels:ultraChart.Data.SetRowLabels(stringArray);