Search found 10 matches

by jamesl
Wed Nov 21, 2007 10:46 am
Forum: ActiveX
Topic: XML Chart Import
Replies: 1
Views: 3258

XML Chart Import

Hello Regarding a previous post(see below) regarding XML chart importing. I'm too looking for a XML format for importing. Is there a definitive list on what XML methods I can use. The mention below of an example file "sampedata.xml" - where can I get this from ? Where can I get the specifications of...
by jamesl
Mon Oct 22, 2007 9:15 am
Forum: .NET
Topic: X Axis - Date formatting
Replies: 7
Views: 8480

Hi Narcis

Problem solved - my fault :oops:

line2.LabelMember = tbl.Columns["Invoice_Date"].ToString();

needed to be

line2.XValues.DataMember = tbl.Columns["Invoice_Date"].ToString();

Thanks very much for your help, much appreciated.

James
by jamesl
Mon Oct 22, 2007 7:40 am
Forum: .NET
Topic: X Axis - Date formatting
Replies: 7
Views: 8480

Thanks Narcis. This gives me good flexibilty over the axis - but for some reason I can no longer see the chart line. Axis now spot on, data line not visible. All I want to do is create a line chart at runtime from SQL data table. strCon = ConfigurationManager.ConnectionStrings["M5ConnectionString"]....
by jamesl
Thu Oct 18, 2007 12:25 pm
Forum: .NET
Topic: X Axis - Date formatting
Replies: 7
Views: 8480

Hi Narcis Thanks for the quick reply. That compiles ok. What I notice is that I still see the automatic date/time labels for each piece of data. What I was looking for was, labels for specific increments eg one week apart. Is there something that switches off auto labels and shows the coded incremen...
by jamesl
Thu Oct 18, 2007 11:34 am
Forum: .NET
Topic: X Axis - Date formatting
Replies: 7
Views: 8480

Hi Narcis I seem to be getting there - what I need is to set the increment. When I use the following code as instructed in the tutorial(axis control/increment) Steema.TeeChart.Axis bottomAxis = WebChartControl1.Chart.Axes.Bottom; bottomAxis.Increment = DateTimeSteps.TwoDays; I get error message "Can...
by jamesl
Wed Oct 17, 2007 2:44 pm
Forum: .NET
Topic: X Axis - Date formatting
Replies: 7
Views: 8480

X Axis - Date formatting

I have a chart on a webform and at runtime I want to change the x axis date format to either Day, Week, Month, Year etc. With the code below I see a line chart only between the specific dates from the data (I'd like to see from eg 1/1/2007 to 31/12/2007 or months 1 to 12). Steema.TeeChart.Chart Char...
by jamesl
Thu Sep 27, 2007 10:02 am
Forum: .NET
Topic: Webchart data source binding
Replies: 7
Views: 9511

Hi Narcis, thanks for the reply we in fact did see the post but were confused by what the manual was telling us:- 'And Internet ! TeeChart Pro .Net is fully compatible with ASP.NET, being able to be placed on an ASP.NET WebForm and edited at design time in a completely WYSIWYG fashion' Please can I ...
by jamesl
Thu Sep 27, 2007 8:29 am
Forum: .NET
Topic: Webchart data source binding
Replies: 7
Views: 9511

Hi Narcis, as I have stated I have looked at the thread in question but this thread points to another thread which looks at bindingsource.

So,which example are you actually referring to?

Many thanks!
by jamesl
Wed Sep 26, 2007 2:34 pm
Forum: .NET
Topic: Webchart data source binding
Replies: 7
Views: 9511

Hi Narcis, thanks for the reply. I have read this thread several times now and still no clearer on finding a example on how to bind a SQL database against a chart against a webform. Firstly, the examples that you point out are aimed towards Visual 2003 (not 2005) / Windows Forms (not webforms) and m...
by jamesl
Wed Sep 26, 2007 2:09 pm
Forum: .NET
Topic: Webchart data source binding
Replies: 7
Views: 9511

Webchart data source binding

Using Visual Studio .NET 2005, how do I connect a data source to the webchart ? I can drag the webchart to the form and drag a SQLDataSource but cannot find away of binding together ie get access to datasource through Chart Editor/Series/Data Source/Database. I can do this easy enough as a Windows a...