I have created a chart using a WebChartCircularDataset. It looks fine with segments of different colors and hovering the mouse over a segment pops up a little window showing the color and quantity. I have not been able to get the chart to show a label for each colored segment. I built the chart with
var ds As new WebChartCircularDataset(“Energy Usage”, ChartData, ChartColors)
ChartPie.AddDataset(ds)
ChartPie.AddLabels(ChartLabel)
where ChartLabel is an array of the names that should be associated with the colors. I tried replacing “Energy Usage” in the dataset constructor and it failed to compile. Neither my ChartLabel array nor the “Energy Usage” title appear anywhere in the finished chart. I was expecting something like the legend at the top of the example chart where there is a label for each of the colors.