As in other chart types, I'm struggling with the available documentation in order to define programatically the different options that you can set interactively -visually-. Nor the available example nor the tutorial show anything on how to use the different color/transparency options for area charts.
Is there any well documentd help where you can see all properties pertaining to each series class or are there additional examples where you can browse the appropriate answer?.
I'm working in VB .NET
Lack of control in Area chart (and other charts as well)
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Yacu,
This works fine for me here:
With TeeChart's help file you can see all Area series methods and you can also see the series it derives from. You can also use Red Gate's .NET reflectore with TeeChart.dll.
Hope this helps!
This works fine for me here:
Code: Select all
Dim area1 As New Steema.TeeChart.Styles.Area(TChart2.Chart)
area1.Color = Color.Red
area1.AreaLines.Color = Color.Blue
area1.Transparency = 50
area1.FillSampleValues()
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 |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Yacu,
You can do this:
You can do this:
Code: Select all
TChart2.Aspect.View3D = False
Dim arrow1 As New Steema.TeeChart.Styles.Arrow(TChart2.Chart)
arrow1.Color = Color.Red
arrow1.ArrowWidth = 10
arrow1.FillSampleValues()
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:
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:
Hi Yacu,
Ok, no problem. I also think that the more familiar you become with TeeChart's architecture the easier it will be for you finding such things.
Ok, no problem. I also think that the more familiar you become with TeeChart's architecture the easier it will be for you finding such things.
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 |