private void button1_Click(object sender, EventArgs e)
        {
#if VS2005
            Steema.TeeChart.Editors.ShadowEditor shadow = new Steema.TeeChart.Editors.ShadowEditor(tChart1.Legend.Shadow);
            Steema.TeeChart.Editors.EditorUtils.Translate(shadow);
            Steema.TeeChart.Editors.EditorUtils.ShowFormModal(shadow);
#endif
        }
Ejemplo n.º 2
0
 private void button1_Click(object sender, System.EventArgs e)
 {
     Steema.TeeChart.Editors.ShadowEditor s = new Steema.TeeChart.Editors.ShadowEditor(pieSeries1.Shadow, null);
     Steema.TeeChart.Editors.EditorUtils.Translate(s);
     Steema.TeeChart.Editors.EditorUtils.ShowFormModal(s, this);
 }
Ejemplo n.º 3
0
 private void button1_Click(object sender, EventArgs e)
 {
     Steema.TeeChart.Editors.ShadowEditor ediShad = new Steema.TeeChart.Editors.ShadowEditor(tChart1.Legend.Symbol.Shadow);
     Steema.TeeChart.Editors.EditorUtils.Translate(ediShad);
     Steema.TeeChart.Editors.EditorUtils.ShowFormModal(ediShad);
 }