Hi,
I m having hard time to display value in tooltip field of column series. Anytime I tried to set value, I always see Y value in tooltip.
See below the way I m adding series and tried to modify tooltip value.
I m having hard time to display value in tooltip field of column series. Anytime I tried to set value, I always see Y value in tooltip.
See below the way I m adding series and tried to modify tooltip value.
For Each r As DataRow In ds2.Tables(0).Rows
Dim item As New SeriesItem
Dim name As String = r.Item("FVID")
Dim vol As Integer = r.Item("total")
item.Name = name
item.YValue = vol
item.TooltipValue = name <-- NOT WORKING
barChartSeries.Items.Add(item)
Dim xaxis As New AxisItem(name)
BarChart.PlotArea.XAxis.Items.Add(xaxis)
Next