【发布时间】:2013-07-31 06:03:20
【问题描述】:
我正在开发一个仪表板系统,我在 WinForms 中使用折线图。我需要在每一行显示 toptip。这个我试过了
var series = new Series
{
Name = chartPoint.SetName,
Color = chartPoint.ChartColor,
ChartType = SeriesChartType.Line,
BorderDashStyle = chartPoint.ChartDashStyle,
BorderWidth = chartPoint.BorderWidth,
IsVisibleInLegend = !chartPoint.HideLegend,
ToolTip = "Hello World"
};
但它不适合我
【问题讨论】: