Search found 206 matches

by Edu
Fri Aug 10, 2007 9:26 am
Forum: .NET
Topic: Catastrophic Failure
Replies: 8
Views: 14637

Hi Roger,

There's no need that you sent your production application. Would you be so kind to arrange a simple example project we can run "as-is" to reproduce the problem here?

Thanks in advance!
by Edu
Fri Aug 10, 2007 7:49 am
Forum: .NET
Topic: Catastrophic Failure
Replies: 8
Views: 14637

Hi Roger Could you please read the Tutorial 9 "ASP.NET Applications"? You'll find it at TeeChart's program group. Does this issue happen also in the ASP.NET demo? You'll find it at TeeChart's program group. If the problem persist could you please send us a simple example project we can run "as-is" t...
by Edu
Thu Aug 09, 2007 9:39 am
Forum: .NET
Topic: weird datetime problem
Replies: 1
Views: 5778

Hi LordWhorfin The problem can be that you have got the "DATE" values defined in the data base and you don't pass the DateTime values to the chart. Could you try with below code: private DataTable CreateDataSet() { #region Define Table DataTable DesperdicioMes = new DataTable(); DataColumn DATE = ne...
by Edu
Thu Aug 09, 2007 8:58 am
Forum: .NET
Topic: Is the Radar series broken in V3
Replies: 6
Views: 12105

Hi Delph

We're sending you a private post with a link because you can download the last version 3 that we know that radar series work fine.
by Edu
Thu Aug 09, 2007 8:40 am
Forum: .NET
Topic: Nearest Point Tool (V3)
Replies: 1
Views: 5409

Hi Jay Thanks for letting us know, I could reproduce the issue here and this seems to be a bug. I've added it (TF02012387) to our defect list to be fixed for future releases. In the meantime you should to use your second possibility. Please be aware at this forum for new release announcements and wh...
by Edu
Thu Aug 09, 2007 8:32 am
Forum: .NET
Topic: Is the Radar series broken in V3
Replies: 6
Views: 12105

Hi Delph

Thanks for letting us know, I could reproduce the issue here and this seems to be a bug. I've added it (TF02012386) to our defect list with high priority to be fixed for future releases.

Please be aware at this forum for new release announcements and what's fixed/implemented on them.
by Edu
Wed Aug 08, 2007 10:17 am
Forum: .NET
Topic: Webform Calendar
Replies: 25
Views: 31047

Hi MikeTheLad Which TeeChart version are you using? Here It's working fine using lastest release (Build 3.2.2763.26081/2 "available at the web") and the below code: Steema.TeeChart.Styles.Calendar calendar1 = new Steema.TeeChart.Styles.Calendar(this.WebChart1.Chart); (WebChart1.Chart.Series[0] as St...
by Edu
Wed Aug 08, 2007 8:27 am
Forum: .NET
Topic: 2003 VB error loading TeeChart
Replies: 1
Views: 5159

Hi AlexS

Could you try remove the TeeChart reference of this project, and then add the reference again?
by Edu
Mon Aug 06, 2007 10:19 am
Forum: .NET
Topic: Grouping of data in a legend
Replies: 7
Views: 12534

Hi usc

You can sort the series, as below method:

Code: Select all

 tChart1.Series.Exchange(0, 1);
The legend will be sorted too.
by Edu
Fri Aug 03, 2007 8:51 am
Forum: .NET
Topic: Typeconverter error when exporting to memory stream
Replies: 12
Views: 17485

Hi Lars Could you please try with the last version 2 (Build 2.0.2652.22325 "available at the web") ? If the problem persist could you please send us a simple example project we can run "as-is" to reproduce the issue here? You can post your files either at [url]news://www.steema.net/steema.public.att...
by Edu
Fri Aug 03, 2007 8:33 am
Forum: .NET
Topic: problem with stacking of Lines and bars
Replies: 8
Views: 13887

Hi usc If you set one series to not-visible and one single series remains in the chart, it doesn't consider previous series stacking, it's plotted as if only one single series existed at the chart. To keep stacking "effect" you can make transparent the series you don't want to be visible. line1.Colo...
by Edu
Fri Aug 03, 2007 7:37 am
Forum: .NET
Topic: Dragging a series in teechart(.net) using mouse
Replies: 1
Views: 5494

Hi Webuser

You can do something as shown here
by Edu
Thu Aug 02, 2007 10:00 am
Forum: .NET
Topic: Vertical graph support in TChart
Replies: 1
Views: 5427

Hi Lakshmi

Have you tried using horizontal line series or horizontal bar series ? You'll fins more information about them at "What's New?\Welcome !\Chart styles\Standard\Horiz. Line" example at the features demo, and below tab. You'll find the demo at TeeChart's program group.
by Edu
Thu Aug 02, 2007 9:10 am
Forum: .NET
Topic: Hiding the vertical axis
Replies: 6
Views: 11805

Hi usc The problem I am facing is how to check whether the custom axis is bound to any data or any series is visible which corresponds to the custom axis. You can know the associates axis to each series, with GetVertAxis and GetHorizAxis properties, you can do something similar as below code: if (li...
by Edu
Thu Aug 02, 2007 8:37 am
Forum: .NET
Topic: Restricting runtime modification of Data in the chart editor
Replies: 1
Views: 5341

Hi Jon

Yes it is, please check the "Welcome !\Components\ChartController\ChartController Editor" example at the features demo, which tells how do it. You'll find the demo at TeeChart's program group.