Search found 7 matches

by Thomas
Tue Dec 04, 2007 6:38 am
Forum: .NET
Topic: Problem with AJAX and Teechart
Replies: 2
Views: 4665

Hi Marc,

I tried to create a test project to show you what I mean, but in this project all works...so I implemented a delay in afterdraw event of the chart. After this the charts where drawed in correct order. I don't know why but it works. That's the main thing.

Greetings,
Thomas
by Thomas
Fri Nov 30, 2007 9:05 am
Forum: .NET
Topic: Problem with AJAX and Teechart
Replies: 2
Views: 4665

Problem with AJAX and Teechart

Hello, in my asp.net application i use the teechart web control nested inside a asp:DataList control as a ItemTemplate. I added the datasource for the datalist programmatically in the codebehind-file of the page and a asyncronous request refreshes the charts periodically. All works fine except of th...
by Thomas
Thu Feb 22, 2007 12:37 pm
Forum: .NET
Topic: Question to labels in bar series
Replies: 5
Views: 8306

For this reason I used AxisLabelItems, but I could'nt find out how I can place the "myLabel4" on the right side of "myLabel1".

Can you send me please a piece of code which shows how I can compute programmatically the value of the "myLabel4"-label ?

Thanks,
Thomas
by Thomas
Thu Feb 22, 2007 9:42 am
Forum: .NET
Topic: Question to labels in bar series
Replies: 5
Views: 8306

Hi,

yes, I use default series marks. I already tried this code you posted, the result is, that I see both bars on each x position, but only the label "myLabel1" will displayed instead of "myLabel1" and "myLabel4"...

Greetings,
Thomas
by Thomas
Thu Feb 22, 2007 8:01 am
Forum: .NET
Topic: Question to labels in bar series
Replies: 5
Views: 8306

Question to labels in bar series

Hi, I would like to add a label to each bar in multiple bar series. I use custom AxesLabelItems with the same x-value of the bar. If a bar of another series have the same x-value, the label of the previous bar will overlaped. Example code: Chart1.Axes.Bottom.Labels.Angle = 90; Bar bar1 = new Bar(Cha...
by Thomas
Tue Feb 13, 2007 7:52 am
Forum: .NET
Topic: Problem with Multiple Bars in MultiBars.Side mode
Replies: 3
Views: 5986

Thanks for your quick reply, My series datapoints are exactly the same in both series i.e.: _series.Add(Convert.ToDateTime("1/1/07 01:00:00"), 2); _series.Add(Convert.ToDateTime("1/1/05 01:00:00"), 7); _series.Add(Convert.ToDateTime("1/1/06 01:00:00"), 8); _series.Add(Convert.ToDateTime("1/1/07 01:0...
by Thomas
Thu Feb 01, 2007 1:44 pm
Forum: .NET
Topic: Problem with Multiple Bars in MultiBars.Side mode
Replies: 3
Views: 5986

Problem with Multiple Bars in MultiBars.Side mode

Hello, I use TeeChart for .NET v2 and I would like to place one bar of the 1st series beside another one of the 2th series. Both bars have the same DateTime-value on the vertical axis. The "Automatic" property of the vertical axis is set to true and I use DatetimeSteps like _x_axis.Increment = Utils...