有谁知道如何在vb.net中为气泡图添加标签?
我可以轻松添加气泡和大小,但我无法弄清楚如何添加标签。请参阅详细代码作为示例
Dim xValues As Double() = {10.62, 75.54, 60.45}
Dim yValues As Double() = {650.62, 50.54, 600.45}
Dim size As Integer() = {10, 20, 30}
Dim names As String() = {"a", "b", "c"}
Chart5.Series("Series1").ChartType = SeriesChartType.Bubble
Chart5.Series("Series1").Points.DataBindXY(xValues, yValues, size, names)
Chart5.Series("Series1").MarkerStyle = MarkerStyle.Circle
任何帮助/想法都将受到赞赏。
由于
答案 0 :(得分:0)
为了澄清我最初的问题并回应Vishy,我一直在寻找泡泡标签。
我找到了使用此代码的解决方案
For i = 0 To 2
Chart5.Series("Series1").Points(i).Label = names(i)
Next
希望这有助于某人
此致