private void button1_Click(object sender, System.EventArgs e)
 {
   Steema.TeeChart.Editors.BrushEditor br = new Steema.TeeChart.Editors.BrushEditor(surface1.SideBrush);
   try
   {
     br.ShowDialog();
   }
   finally
   {
     br.Dispose();
   }
 }
Пример #2
0
 private void button2_Click(object sender, EventArgs e)
 {
     Steema.TeeChart.Editors.BrushEditor bredit = new Steema.TeeChart.Editors.BrushEditor(contour1.Brush);
     Steema.TeeChart.Editors.EditorUtils.Translate(bredit);
     Steema.TeeChart.Editors.EditorUtils.ShowFormModal(bredit);
 }