Search found 6 matches

by Ivan_vS
Wed Feb 02, 2011 1:57 am
Forum: .NET
Topic: Triangle Base Perimeter Line Does Not Appear
Replies: 1
Views: 2588

Triangle Base Perimeter Line Does Not Appear

The following code produces a triangle shape. However the base perimeter line is missing?: Steema.TeeChart.Styles.Shape triangle = new Steema.TeeChart.Styles.Shape (Chart.Chart); triangle.Style = Steema.TeeChart.Styles.ShapeStyles.Triangle; triangle.Pen.Color = System.Drawing.Color.Blue; triangle.Co...
by Ivan_vS
Fri Jan 28, 2011 11:24 pm
Forum: .NET
Topic: TeeChart.Styles.Arrow LinePen Issues
Replies: 3
Views: 5261

Re: TeeChart.Styles.Arrow LinePen Issues

Thanks Sandra,

However I have been using the Arrow Series with one entry:

eg: ARROW.Add (0.0, 0.0, 1.0, 1.0);

... and the LinePen does not seem to work in that circumstance.
by Ivan_vS
Fri Jan 28, 2011 7:05 am
Forum: .NET
Topic: TeeChart.Styles.Arrow LinePen Issues
Replies: 3
Views: 5261

TeeChart.Styles.Arrow LinePen Issues

Steema.TeeChart.Styles.Arrow ARROW = new Steema.TeeChart.Styles.Arrow (Chart.Chart);

later ... followed by:

ARROW.LinePen.Visible = true;
ARROW.LinePen.Width = 10;
ARROW.LinePen.Style = System.Drawing.Drawing2D.DashStyle.DashDot;

has no effect on the arrow series lines?
by Ivan_vS
Wed Jan 26, 2011 9:55 am
Forum: .NET
Topic: ShapeStyles.Line to Point Outwards Around a Circle
Replies: 1
Views: 2656

ShapeStyles.Line to Point Outwards Around a Circle

Using: Steema.TeeChart.Styles.ShapeStyles.Line; Could you please show me how to orientate around a circle: Say 4 series pointing outwards with the following (conventional) coordinates: (x0,y0) (x1,y1) 45 % (0,0) ( 1, 1) 135% (0,0) (-1,1) 225% (0,0) (-1,-1), and, 315% (0,0) ( 1,-1) I have spent sever...
by Ivan_vS
Tue Jan 25, 2011 4:25 am
Forum: .NET
Topic: Pen StartCap
Replies: 1
Views: 2674

Pen StartCap

Whilst the Pen EndCap is provided is there anyway of accessing StartCap functionality (the cap style at the beginning of Pen lines)?
by Ivan_vS
Mon Jan 10, 2011 11:25 am
Forum: .NET
Topic: Shape Series Styles
Replies: 1
Views: 2632

Shape Series Styles

Could you please add the following 3 styles to the Shapes series:

Arc,
Parallelogram, and,
Rounded Rectangle

These would mimic the equivalent Microsoft PowerPoint shapes and enable a more effective harnessing of shapes into a dynamic diagram.