Documentation for WPF Teechart
-
- Newbie
- Posts: 18
- Joined: Tue Sep 04, 2007 12:00 am
Documentation for WPF Teechart
Hi,
I have Evaluation version of TeeChart for .NET v3. I found sample for WPF Teechart in it. But Couldn't find any documentation or help file for WPF Teechart. Can you please tell me where I can find the same?
Regards,
Priya
I have Evaluation version of TeeChart for .NET v3. I found sample for WPF Teechart in it. But Couldn't find any documentation or help file for WPF Teechart. Can you please tell me where I can find the same?
Regards,
Priya
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Priya,
There's no specific documentation nor help files efor TeeChart.WPF.dll. Generic TeeChart douments and examples apply. You'll find them at TeeChart's program group.
If there's anything specific you can't find don't hesitate to let us know.
There's no specific documentation nor help files efor TeeChart.WPF.dll. Generic TeeChart douments and examples apply. You'll find them at TeeChart's program group.
If there's anything specific you can't find don't hesitate to let us know.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Newbie
- Posts: 18
- Joined: Tue Sep 04, 2007 12:00 am
I want to find out whether Teechart for WPF support below 2 features
1) Multiple charts stacked on top of each other with tied scrolling. E.g. A price chart displayed over a volume chart.
2) Interactive cursors - position the cursors at a specific data point in a series and hint you on it's X and Y values via a horizontal and vertical line passing through the data point and intersecting the X and Y axis.
Regards,
Priya
1) Multiple charts stacked on top of each other with tied scrolling. E.g. A price chart displayed over a volume chart.
2) Interactive cursors - position the cursors at a specific data point in a series and hint you on it's X and Y values via a horizontal and vertical line passing through the data point and intersecting the X and Y axis.
Regards,
Priya
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Priya,
Yes, those features are the same for WinForms and WPF applications.
All Features\Welcome !\Axes\Scrolling multiple axes
All Features\Welcome !\Axes\Permanent custom axes
All Features\Welcome !\Axes\Opaque zones
You'll also find more info about axis settings at Tutorial 4 - Axis Control. Tutorials can be found at TeeChart's program group.
Hope this helps!
Yes, those features are the same for WinForms and WPF applications.
You can achieve that using custom axes as shown in the following examples at the features demo, available at TeeChart¡s program group:1) Multiple charts stacked on top of each other with tied scrolling. E.g. A price chart displayed over a volume chart.
All Features\Welcome !\Axes\Scrolling multiple axes
All Features\Welcome !\Axes\Permanent custom axes
All Features\Welcome !\Axes\Opaque zones
You'll also find more info about axis settings at Tutorial 4 - Axis Control. Tutorials can be found at TeeChart's program group.
Yes, you can do that as shown in the examples at All Features\Welcome !\Tools\Cursor in the features demo.2) Interactive cursors - position the cursors at a specific data point in a series and hint you on it's X and Y values via a horizontal and vertical line passing through the data point and intersecting the X and Y axis.
Hope this helps!
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Newbie
- Posts: 18
- Joined: Tue Sep 04, 2007 12:00 am
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Priya,
So the same can be done with WPF applications.
"StepLine" is not a series style it just consist of basic Line series with Stairs property set to true:1) Teechart for WPF does not have "StepLine" chart type. Is there any plan to have "StepLine" in next releases?
If not, Is there any way to create custom series?
Code: Select all
Steema.TeeChart.Styles.Line line1 = new Steema.TeeChart.Styles.Line(tChart1.Chart);
line1.Stairs = true;
line1.FillSampleValues();
Yes, a SilverLight control will be included with next TeeChart for .NET major release due out by the end of this quarter.2) Is there any plan to release Teechart chart control for SilverLight ?
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Newbie
- Posts: 18
- Joined: Tue Sep 04, 2007 12:00 am
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Priya,
Yes, they have same feature set.1) Does Teechart Silverlight Chart control has same features as Teeechart WPF ?
Yes.2) Are the APIs for Silverlight and WPF Teechart same? I meant, do they have common codebase?
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Newbie
- Posts: 18
- Joined: Tue Sep 04, 2007 12:00 am
Thanks Again, Narcís
I have one more question.
1) Can we bind WPF Chart to List or Collection ?
I tried to do same, but it doesn't work.
Since Silverlight does not have ADO.net, We have planned to use ObservableCollection<T> class, which will be binded to both Silverlight and WPF controls like Grid or Chart.
ObservableCollection is used so that control can recognise the data changes.
How did you planned to do binding for Silverlight Chart ?
Thanks,
Priya
I have one more question.
1) Can we bind WPF Chart to List or Collection ?
I tried to do same, but it doesn't work.
Since Silverlight does not have ADO.net, We have planned to use ObservableCollection<T> class, which will be binded to both Silverlight and WPF controls like Grid or Chart.
ObservableCollection is used so that control can recognise the data changes.
How did you planned to do binding for Silverlight Chart ?
Thanks,
Priya
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Priya,
The Series.DataSource property will have to be modified to work with .NET 3.0. I'll add your request to the wish-list to be considered for inclusion in next releases.
The Series.DataSource property will have to be modified to work with .NET 3.0. I'll add your request to the wish-list to be considered for inclusion in next releases.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Newbie
- Posts: 18
- Joined: Tue Sep 04, 2007 12:00 am
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Priya,
We are not sure about that yet, some more investigation is still necessary. However, it's likely there will be support for ObservableCollection.
We are not sure about that yet, some more investigation is still necessary. However, it's likely there will be support for ObservableCollection.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hello,
For completeness, the discussion continued here:
http://www.teechart.net/support/viewtop ... 7863#37863
And requested feature has been already implemented. This thread contains an example.
For completeness, the discussion continued here:
http://www.teechart.net/support/viewtop ... 7863#37863
And requested feature has been already implemented. This thread contains an example.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |