Search found 13 matches

by Jakob
Wed Mar 17, 2004 2:12 pm
Forum: .NET
Topic: ASP.NET Chart Event Q2
Replies: 4
Views: 10897

Yes I use the latest build (1.1.1499.42325)

I have sent you a sample that shows what I mean.

Regards
/Jakob
by Jakob
Wed Mar 17, 2004 12:40 pm
Forum: .NET
Topic: ASP.NET Chart Event Q2
Replies: 4
Views: 10897

I have found what the problem is: It is only possible to modidy controls that are located AFTER the chart control on the ASPX-page, presumably because they have not been rendered yet! If a move the label control that I try to modify and place it just before the chart control, it works. If I move it ...
by Jakob
Tue Mar 16, 2004 2:49 pm
Forum: .NET
Topic: Click event for Label ?
Replies: 7
Views: 16197

Hi Christopher,

I have tried this, I added custom labels to my left axis, and in the onClickBackground event, I can find the labels.

However: The ShapeBounds property of the label items are always 0, so how can I find out which one that was clicked?

Regards
/Jakob
by Jakob
Mon Mar 15, 2004 3:46 pm
Forum: .NET
Topic: Click event for Label ?
Replies: 7
Views: 16197

Hi. I have looked at this sample, but it handles marks instead of labels. I am trying to solve this by implementing the onClickBackground event, but the problem is that when I get there, the Labels collection of my axis is empty? private void onClickBackground(object sender, ImageClickEventArgs e) {...
by Jakob
Mon Mar 08, 2004 3:16 pm
Forum: .NET
Topic: ASP.NET Chart Event Q2
Replies: 4
Views: 10897

ASP.NET Chart Event Q2

One more question:

When handling for example a click series event in my ASP.NET
page, any changes to other controls on the page does not get
rendered! It seems that only the chart itself gets repainted

(I am using a GetChart.aspx page as the example show)

Why is this?
/Jakob
by Jakob
Mon Mar 08, 2004 2:42 pm
Forum: .NET
Topic: ASP.NET chart event
Replies: 1
Views: 6263

ASP.NET chart event

Hi,

It seems that in order to catch events from a TeeChart control that is situated on an ASP.NET page, I need to recreate the chart (in Page_Load for example) with the same appearance, otherwise ny event handler is never called.

Is this correct?

Regards
/Jakob
by Jakob
Fri Feb 27, 2004 9:07 am
Forum: .NET
Topic: Non-linear labels for log scale?
Replies: 1
Views: 6613

OK, I found this out, it was rather easy! :-) tChart1.Axes.Bottom.Labels.Items.Add(0.125, "0.125"); tChart1.Axes.Bottom.Labels.Items.Add(0.25, "0.25"); tChart1.Axes.Bottom.Labels.Items.Add(0.5, "0.5"); tChart1.Axes.Bottom.Labels.Items.Add(1, "1"); tChart1.Axes.Bottom.Labels.Items.Add(2, "2"); tChart...
by Jakob
Fri Feb 27, 2004 9:03 am
Forum: .NET
Topic: Legend items alignment
Replies: 1
Views: 6760

Legend items alignment

Hi!

If I set the Legend position to top, the items shown in the legend
becomes horizontally aligned. Hoe do I get them to be vertically
aligned (as they are when they are placed left or right of the chart)?

Regards
/Jakob
by Jakob
Fri Feb 27, 2004 8:54 am
Forum: .NET
Topic: Non-linear labels for log scale?
Replies: 1
Views: 6613

Non-linear labels for log scale?

Hi!

I have a bottom axes that is logarithmic. Therefor I would like the
labels on this axes to have "logarithmic increasing" values, such as:


0,125
0,25
0,5
1
2
4

How can I do this?

Regards
/Jakob
by Jakob
Thu Feb 26, 2004 10:47 am
Forum: .NET
Topic: Click event for Label ?
Replies: 7
Views: 16197

Hi!

I've post one example which show you how to do this in VB.Net (WebApplication) to the steema.public.attachments newsgroup.
I'm sorry, which newsgroup is this? I cant find this newsgroup anywhere?

Regards
/Jakob
by Jakob
Wed Feb 25, 2004 6:35 pm
Forum: .NET
Topic: "Invalid Parameter" error when clicking a series
Replies: 3
Views: 9919

The reason for this error is that I don't explicitly set the Height property in the designer!

If I set the Height property programmatically I get the error (and the chart does not become the size that I set it to be??)

Regards
/Jakob
by Jakob
Wed Feb 25, 2004 4:50 pm
Forum: .NET
Topic: Click event for Label ?
Replies: 7
Views: 16197

Click event for Label ?

Hi, is it possible to catch events for clicking on the labels for
a series (the value/name on the y-axis)?

Regards
/Jakob
by Jakob
Wed Feb 25, 2004 2:10 pm
Forum: .NET
Topic: How can I do this graph?
Replies: 5
Views: 13486

Thanks Chris. But: Do you mean that I should use ony one HorizBar series for all my values? Or is it just a typo? However when I tried to use 2 HorizBars with 2 values each (with the same y-value) they appear fine in the graph, but only one of them gets there associated name printed on the left axis...