Wish: Colorband drag like rectangle
Wish: Colorband drag like rectangle
I would like to have the same dragging capabiilty like the rectangle also for the colorband
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: Wish: Colorband drag like rectangle
Hello,
ColorBand can be configured to enable the mouse-dragging of the two edge lines, e.g.
ColorBand can be configured to enable the mouse-dragging of the two edge lines, e.g.
Code: Select all
private void InitializeChart()
{
tChart1.Aspect.View3D = false;
Line line1 = new Line(tChart1.Chart);
line1.FillSampleValues(100);
ColorBand band1 = new ColorBand(tChart1.Chart);
band1.Axis = tChart1.Axes.Bottom;
band1.Start = 10;
band1.End = 30;
band1.ResizeEnd = true;
band1.ResizeStart = true;
}
Best Regards,
Christopher Ireland / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |