So I have a simple UltraCategoryChart bar/column chart showing counts by month and year. So the first set of columns is January, with 3 bars reflecting 2020, 2019, and 2018.
When I mouseover a column I get the month, column title and quantity (see the attached example), which is all great.
My problem is that I'd like to see just "2020" instead of "Y2020", however when I set the DataTable name to "2020" then no data shows on the chart.
workTable.Columns.Add("Y2020", Type.GetType("System.Double")) workTable.Columns.Add("Y2019", Type.GetType("System.Double")) workTable.Columns.Add("Y2018", Type.GetType("System.Double"))
Hello Ted,
As per the C# language specifications, identifiers must begin with a character or underscore.
The only way to display numeric value would be to create your own custom layer displaying modified values and disable the default tooltip. You can check the samples included in the samples browser: WinCategoryChart -> Annotation Layers, where you can see how this custom layers can be added to the chart.
Sincerely,
Tihomir TonevAssociate Software DeveloperInfragistics
Thank you for the reply Tihomir. I think I'll just leave it for now - too many other more important fires to put out right now.