如何删除实时图表行图中的默认标签?

时间:2018-10-26 08:24:00

标签: c# winforms livecharts

我正在使用使用Live Charts加载项的Windows Forms应用程序,并且我需要从其他非常简单的条形图中获取默认描述符。遗憾的是,该网站无法很好地进行自我解释,并且支持聊天比Windows XP的更新服务器还要糟糕。

This

这就是我需要走的东西。

cartesianChart1.Series = new SeriesCollection { };
int counter = 0;
foreach (string number in daten)
{
    cartesianChart1.Series.Add(new RowSeries { Title = titel[counter], Values = new ChartValues<int> { Convert.ToInt16(number) }, DataLabels = true });
    counter++;
}
//cartesianChart1.AxisY.Remove();

1 个答案:

答案 0 :(得分:0)

您可以通过添加没有标签的新“空白” Y轴来实现。

cartesianChart1.Series = new SeriesCollection { };
int counter = 0;

foreach (string number in daten)
{
  cartesianChart1.Series.Add(new RowSeries { Title = titel[counter], Values = new ChartValues<int> { Convert.ToInt16(number) }, DataLabels = true });
  counter++;
}

// Add blank Y axis to hide the default axis.
cartesianChart1.AxisY.Add(new Axis
{
  Labels = new string[0]
});

Screenshot