在BubbleSerie中的图表点内显示标签

时间:2016-08-03 10:13:46

标签: c# livecharts

如何使用BubbleSeries(或任何其他系列)在图表点内显示标签?

1 个答案:

答案 0 :(得分:1)

这适用于LiveCharts中的任何系列:

  • 要在图表点上显示标签,请在系列
  • 上设置DataLabels = true
  • 要自定义显示的标签,请使用系列
  • 上的LabelPoint属性

示例(注意BubbleSeries将在下一版本的库中更改为ScatterSeries):

var mySeries = new ScatterSeries
{
    Values = new ChartValues<ScatterPoint> { new ScatterPoint(3,4,80) },
    DataLabels = true,
    LabelPoint = point => point.X + "," + point.Y + "," + point.Weight
};

将显示

enter image description here