WinForms で折れ線グラフを使用しているダッシュボード システムに取り組んでいます。各行に tooptip を表示する必要があります。私はこれを試しました
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"
};
しかし、それは私のために働いていません