Hi,
Can anyone let me know how can I set the Chart title during runtime in ASP.NET C# program?
Thanks.
Set Chart Title during runtime
Set Chart Title during runtime
Hi Ringo,
Here you are:
Chart1.Legend.Title = "My New Title";
Thank you.
Here you are:
Chart1.Legend.Title = "My New Title";
Thank you.
Set Chart Title during runtime
Thanks Edward.
But I meant the chart title (the one appear on top), but the legend title. Btw, how to I set reference to "Chart1", it's actually my problem because I can't find a way to set the reference to the chart in report. The coding is in C# (ASP.NET).
Thanks.
But I meant the chart title (the one appear on top), but the legend title. Btw, how to I set reference to "Chart1", it's actually my problem because I can't find a way to set the reference to the chart in report. The coding is in C# (ASP.NET).
Thanks.
Set Chart Title during runtime
Hello,
Please use the following property:
Chart1.Title.Text = "My Title";
Chart1.Title.Visible = true;
Thank you.
Please use the following property:
Chart1.Title.Text = "My Title";
Chart1.Title.Visible = true;
Thank you.