The Extra Legend...
Posted: Tue Apr 28, 2009 3:31 pm
...isn't displaying the checkboxes?? I'm using the latest TChart.
Regards,
Chris.
Code: Select all
public Form1()
{
InitializeComponent();
Line l = new Line(tChart1.Chart);
tChart1.Aspect.View3D = false;
tChart1.Panel.MarginRight = 6;
tChart1.Panel.MarginBottom = 6;
tChart1[0].FillSampleValues();
//l.FillSampleValues();
new ExtraLegend(tChart1.Chart) { Series = tChart1[0], Active = true, Legend = { CheckBoxes = true, Alignment = Steema.TeeChart.LegendAlignments.Left } };
}
Chris.