Search found 68 matches
- 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
- 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.
- Wed Jun 10, 2009 1:25 pm
- Forum: .NET
- Topic: DataTableTool
- Replies: 10
- Views: 6494
- Wed Jun 10, 2009 12:03 pm
- Forum: .NET
- Topic: DataTableTool
- Replies: 10
- Views: 6494
- Wed Jun 10, 2009 11:49 am
- Forum: .NET
- Topic: DataTableTool
- Replies: 10
- Views: 6494
just emailed zip to support@steema.com. thx
- Wed Jun 10, 2009 11:25 am
- Forum: .NET
- Topic: DataTableTool
- Replies: 10
- Views: 6494
- 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...
- 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...
- 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
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
- 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...
- 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...
- 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;...
- 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...
- 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...
- 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.