c#将图表标题放在字符串变量中

时间:2017-10-09 08:13:25

标签: c# visual-studio

我使用c#,如何将图表的标题放在字符串变量中?

我使用委托,所以这是我的代码:

private void ChartTitle(object sender, MouseEventArgs e)
{
    Chart Chart = (Chart)sender;
    string title=Chart.Titles. ???
}

1 个答案:

答案 0 :(得分:0)

正如msdn documentation所说,您应该以这种方式添加标题:

Chart1.Titles.Add("My Chart"); // Titles text, not the name
Chart1.Titles.["Title1"].Name = "MyTitle"; // By default charts titles name is Title1, we rename it

然后你可以通过以下方式获得价值:

string title = Chart1.Titles["MyTitle"].Text;