My code looks as follows
Code: Select all
Dim s As Steema.TeeChart.Styles.FastLine = CType(selectorPart.ASeries, Steema.TeeChart.Styles.FastLine)
Steema.TeeChart.Editors.PenEditor.Edit(s.LinePen)
Code: Select all
Dim s As Steema.TeeChart.Styles.FastLine = CType(selectorPart.ASeries, Steema.TeeChart.Styles.FastLine)
Steema.TeeChart.Editors.PenEditor.Edit(s.LinePen)
Code: Select all
Steema.TeeChart.Styles.FastLine s = new Steema.TeeChart.Styles.FastLine(tChart1.Chart);
Steema.TeeChart.Editors.PenEditor editor1 = new Steema.TeeChart.Editors.PenEditor(s.LinePen);
editor1.Text = "Series Editor";
editor1.Show();
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |