Yes I use the latest build (1.1.1499.42325)
I have sent you a sample that shows what I mean.
Regards
/Jakob
Search found 13 matches
- Wed Mar 17, 2004 2:12 pm
- Forum: .NET
- Topic: ASP.NET Chart Event Q2
- Replies: 4
- Views: 10953
- Wed Mar 17, 2004 12:40 pm
- Forum: .NET
- Topic: ASP.NET Chart Event Q2
- Replies: 4
- Views: 10953
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 ...
- Tue Mar 16, 2004 2:49 pm
- Forum: .NET
- Topic: Click event for Label ?
- Replies: 7
- Views: 16315
- Mon Mar 15, 2004 3:46 pm
- Forum: .NET
- Topic: Click event for Label ?
- Replies: 7
- Views: 16315
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) {...
- Mon Mar 08, 2004 3:16 pm
- Forum: .NET
- Topic: ASP.NET Chart Event Q2
- Replies: 4
- Views: 10953
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
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
- Mon Mar 08, 2004 2:42 pm
- Forum: .NET
- Topic: ASP.NET chart event
- Replies: 1
- Views: 6297
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
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
- Fri Feb 27, 2004 9:07 am
- Forum: .NET
- Topic: Non-linear labels for log scale?
- Replies: 1
- Views: 6656
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...
- Fri Feb 27, 2004 9:03 am
- Forum: .NET
- Topic: Legend items alignment
- Replies: 1
- Views: 6808
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
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
- Fri Feb 27, 2004 8:54 am
- Forum: .NET
- Topic: Non-linear labels for log scale?
- Replies: 1
- Views: 6656
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
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
- Thu Feb 26, 2004 10:47 am
- Forum: .NET
- Topic: Click event for Label ?
- Replies: 7
- Views: 16315
- Wed Feb 25, 2004 6:35 pm
- Forum: .NET
- Topic: "Invalid Parameter" error when clicking a series
- Replies: 3
- Views: 9984
- Wed Feb 25, 2004 4:50 pm
- Forum: .NET
- Topic: Click event for Label ?
- Replies: 7
- Views: 16315
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
a series (the value/name on the y-axis)?
Regards
/Jakob
- Wed Feb 25, 2004 2:10 pm
- Forum: .NET
- Topic: How can I do this graph?
- Replies: 5
- Views: 13588
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...