Series name does not match the real series
Posted: Wed Nov 05, 2008 5:35 pm
I created a complex chart with a lot of series. I had uploaded the theme file via your upload page.
After the theme loaded, I unchecked one series from the legend checkbox. Then I invoked the chart editor to check the series.
I found the name of unchecked series on legend does not match the real one disappeared. Would you please help to check this?
The files I uploaded are SeriesNotMatch_ChartTheme.xml and SeriesNotMatch.jpg.
After the theme loaded, I unchecked one series from the legend checkbox. Then I invoked the chart editor to check the series.
I found the name of unchecked series on legend does not match the real one disappeared. Would you please help to check this?
The files I uploaded are SeriesNotMatch_ChartTheme.xml and SeriesNotMatch.jpg.
Code: Select all
Private Sub btnLoad_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnThemeLoad.Click
TChart1.Import.Theme.Load("D:\SeriesNotMatch_ChartTheme.xml")
End Sub
Private Sub TChart1_MouseClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles TChart1.MouseClick
If e.Button = Windows.Forms.MouseButtons.Right Then
Dim edi As New Steema.TeeChart.Editors.ChartEditor(TChart1.Chart)
edi.Show()
End If
End Sub