TeeChart Pro V6.0
No errors appear. The page just keeps trying to load the chart and hangs.
Search found 18 matches
- Tue Mar 27, 2007 12:52 pm
- Forum: ActiveX
- Topic: Active X and IIS
- Replies: 3
- Views: 5279
Active X and IIS
Are there any known issues with active x and IIS 5.0. I have a simple test page to generate a chart. While it generates no problem on my local server with IIS 5.1 when I deploy to web server running IIS 5.0 and win2000 the chart will not generate. See code below. using System; using System.Data; usi...
- Thu Mar 15, 2007 3:28 pm
- Forum: ActiveX
- Topic: assigning dataset as XYchart datasource
- Replies: 3
- Views: 5577
- Thu Mar 15, 2007 2:00 pm
- Forum: ActiveX
- Topic: assigning dataset as XYchart datasource
- Replies: 3
- Views: 5577
assigning dataset as XYchart datasource
Hi I have a DataSet that I am using as the data source for an XY chart and assigning two parameters from the dataset as the X and Y values but I get a Catastrophic failure in ASP.net when I do so. Can you tell me if the code below is correct. Chart.AddSeries(TeeChart.ESeriesClass.scLine); Chart.Seri...
- Thu Mar 15, 2007 1:33 pm
- Forum: .NET
- Topic: X axis Date series
- Replies: 2
- Views: 5451
X axis Date series
I is it possible to have a date series for an X axis in an XY chart.
Chart.addXY() is alwats looking for double parameters and wont take a date format.
Chart.addXY() is alwats looking for double parameters and wont take a date format.
- Wed Aug 30, 2006 10:42 am
- Forum: .NET
- Topic: Tables for charts
- Replies: 1
- Views: 3320
Tables for charts
Is it possible to add a small table to a chart that will show the min max values on the chart
- Thu Aug 24, 2006 10:30 am
- Forum: .NET
- Topic: surface chart axis
- Replies: 1
- Views: 3409
surface chart axis
is it possible to have the left axis visable on both sides of the mesh on a 3D surface chart??
It is dificult to trace the scale all the way around the graph.
It is dificult to trace the scale all the way around the graph.
- Thu Aug 24, 2006 10:14 am
- Forum: ActiveX
- Topic: Bubble value displayed within the bubble itself
- Replies: 15
- Views: 15624
- Thu Aug 24, 2006 9:32 am
- Forum: ActiveX
- Topic: Series order loAscending
- Replies: 4
- Views: 6143
- Thu Aug 24, 2006 9:11 am
- Forum: ActiveX
- Topic: Series order loAscending
- Replies: 4
- Views: 6143
Series order loAscending
When I use the statement below I get an error saying that loAscending does not exist.
axTChart2.Series(seriesNum).XValues.Order = loAscending;
Is there a full qualifier for this variable
axTChart2.Series(seriesNum).XValues.Order = loAscending;
Is there a full qualifier for this variable
- Thu Aug 24, 2006 9:10 am
- Forum: ActiveX
- Topic: Series order loAscending
- Replies: 4
- Views: 6143
Series order loAscending
When I use the statement below I get an error saying that loAscending does not exist.
Is there a full qualifier foer this variable?
Is there a full qualifier foer this variable?
- Wed Aug 23, 2006 11:00 am
- Forum: ActiveX
- Topic: Bubble value displayed within the bubble itself
- Replies: 15
- Views: 15624
- Tue Aug 22, 2006 3:32 pm
- Forum: ActiveX
- Topic: Bubble value displayed within the bubble itself
- Replies: 15
- Views: 15624
- Tue Aug 22, 2006 3:22 pm
- Forum: ActiveX
- Topic: Bubble value displayed within the bubble itself
- Replies: 15
- Views: 15624
- Tue Aug 22, 2006 2:31 pm
- Forum: ActiveX
- Topic: Bubble value displayed within the bubble itself
- Replies: 15
- Views: 15624
Thanks but this is still not working. See my code below: foreach(DataRow dr in datarows) { if (getPageName(dr) == pg) { if (dr[X] != System.DBNull.Value && dr[Y]!= System.DBNull.Value && dr[Mag] != System.DBNull.Value) { string sery = getCurveName(dr); System.UInt32 pointColor; int seriesNum = serie...