using Steema.TeeChart.Editors.AxisLabelsEditor
Posted: Fri May 17, 2013 4:04 am
Is it possible to call the Steema.TeeChart.Editors.AxisLabelsEditor editor passing an axis to it?
Steema Software - Customer Support Forums
http://216.92.101.67/support/
Code: Select all
private void button1_Click(object sender, EventArgs e)
{
Steema.TeeChart.Editors.AxisLabelsEditor labelsEditor = new Steema.TeeChart.Editors.AxisLabelsEditor(this.panel1);
labelsEditor.SetAxis(tChart1.Axes.Bottom);
}
Code: Select all
Private Sub RibbonGroup11_DialogLauncherClick(sender As Object, e As EventArgs) Handles RibbonGroup11.DialogLauncherClick
Dim frm As Form = New Form
Dim labelsEditor As Steema.TeeChart.Editors.AxisLabelsEditor = New Steema.TeeChart.Editors.AxisLabelsEditor(frm)
labelsEditor.SetAxis(m_selectedAxis)
frm.ShowDialog()
End Sub