Search found 68 matches

by Luke
Mon Jun 22, 2009 8:28 am
Forum: .NET
Topic: Series Color missing in Legend.
Replies: 2
Views: 2659

Re: Series Color missing in Legend.

Interestingly when I changed from Line to FAstLine this resolved the issue. No idea why
by Luke
Mon Jun 22, 2009 8:24 am
Forum: .NET
Topic: Series Color missing in Legend.
Replies: 2
Views: 2659

Series Color missing in Legend.

Series Color is missing when I add Multiple Lines to a chart. However when I set the FontSeriesColor to true that is correct.
by Luke
Wed Jun 10, 2009 1:25 pm
Forum: .NET
Topic: DataTableTool
Replies: 10
Views: 6494

Ok thx Narcis

Think I will go with adding labels directly to axis as its a easier/cleaner solution than firing an event on the resize.

Please also as I mentioned before this occurs on the bottom axis too.
by Luke
Wed Jun 10, 2009 12:03 pm
Forum: .NET
Topic: DataTableTool
Replies: 10
Views: 6494

Hi

I need to email it as upload pages get blocked here.

thx
by Luke
Wed Jun 10, 2009 11:49 am
Forum: .NET
Topic: DataTableTool
Replies: 10
Views: 6494

just emailed zip to support@steema.com. thx
by Luke
Wed Jun 10, 2009 11:25 am
Forum: .NET
Topic: DataTableTool
Replies: 10
Views: 6494

but doesnt that mean the automatic labelling functions are slightly buggy?

There seems to be always plenty of space for them but yet some are automatically hidden.

They dissapear when making the chart bigger and not just smaller.
by Luke
Tue Jun 09, 2009 3:00 pm
Forum: .NET
Topic: DataTableTool
Replies: 10
Views: 6494

Its just sometimes this auto fitting seems to be very dubiuous. Sometimes there is clearly enough space and yet I lose column texts. Even when I make the Chart wider column texts flash on and off. Teechart seems to behave better when I add Labels Seperately for bar charts. If I have 3 series and I a...
by Luke
Tue Jun 09, 2009 1:51 pm
Forum: .NET
Topic: Labels dissapear on Y axis, even when there is enough space
Replies: 3
Views: 3189

Create 2 HorizBar Series Add 2 each 5 values hb1.add(0.23,"Value1") hb1.add(0.25,"Value2") hb1.add(0.26,"Value3") hb1.add(0.27,"Value4") hb1.add(0.29,"Value5") hb2.add(1.23,"Value1") hb2.add(1.25,"Value2") hb2.add(1.26,"Value3") hb2.add(1.27,"Value4") hb2.add(1.29,"Value5") the labels are same for e...
by Luke
Tue Jun 09, 2009 12:13 pm
Forum: .NET
Topic: Labels dissapear on Y axis, even when there is enough space
Replies: 3
Views: 3189

Labels dissapear on Y axis, even when there is enough space

I am sometime only getting alternate labels being displayed on the Y axis.

There is enough room and this makes no sense at all. Its similar to the Bottm axis this also displayed weird behaviour when resizing.

This is with the latest version of the .net dlls
by Luke
Mon Jun 08, 2009 12:57 pm
Forum: .NET
Topic: DataTableTool
Replies: 10
Views: 6494

DataTableTool

Legend Why when the legend is visible in the datatable on the Left hand side. Is it not possible that the column border always lines up with the Left Axis? The chart looks messy when first column does not line up wiht the axis And why is there no auto font size. The Datatable in Excel auto resizes t...
by Luke
Thu Jun 04, 2009 12:19 pm
Forum: .NET
Topic: Automatic Axis
Replies: 3
Views: 3270

I would use the same tChart control and for 1 chart (a line chart with dates on bottom axis) I have auto axis. I then use same chart to display a bar chart. With manual Maximum on the bottom axis. (I have to do this as automaximum cuts the bars to short if they are bordered) The maximum value doesnt...
by Luke
Thu Jun 04, 2009 9:32 am
Forum: .NET
Topic: Automatic Axis
Replies: 3
Views: 3270

Automatic Axis

Is there any way to reset these? If I use the same chart control to display mulptile charts, some have automatic axis some dont. The plot never comes back the same even when switching the automatic back to true? Chart.Axes.Bottom.AutomaticMaximum = false; tChart.Axes.Bottom.AutomaticMinimum = false;...
by Luke
Thu Jun 04, 2009 7:50 am
Forum: .NET
Topic: ColorLine Removal
Replies: 1
Views: 2150

ColorLine Removal

cl = new ColorLine(tChart.Chart); cl.Axis = tChart.Axes.Left; cl.Value = 0; cl.AllowDrag = false; If I add a ColorLine this way to chart to crete custm axis, how do I remove it? Is there also any way to restore a tchart to say a default state. If you use 1 chart to display varying contents. you have...
by Luke
Wed Dec 10, 2008 2:41 pm
Forum: .NET
Topic: Teechart Legend Symbol for PieChart
Replies: 3
Views: 3246

Steema.TeeChart.Styles.Pie Pie = new Steema.TeeChart.Styles.Pie(tChart1.Chart); for (int x = 0; x < 10; x++) { Pie.Add(x, "Label " + x.ToString(), Color.Aqua); } Pie.Pen.Visible = true; tChart1.Legend.Symbol.DefaultPen = false; tChart1.Legend.Symbol.Pen.Visible = true; tChart1.Legend.Symbol.Pen.Colo...
by Luke
Wed Dec 10, 2008 2:03 pm
Forum: .NET
Topic: Teechart Legend Symbol for PieChart
Replies: 3
Views: 3246

Teechart Legend Symbol for PieChart

If I want to adjust the Border for the Symbols in the Legend it only ever adjusts the first item in the Series. legend.Symbol.DefaultPen = false; legend.Symbol.Pen.Visible = true; legend.Symbol.Pen.Color = Color.Black; legend.Symbol.Pen.Width = 1; Does the same with the Charteditor.