Hi,
We have teechart 7 and we need to do TreeMap. I have downloaded Evaluation Version 2012 to see if this version wil meet our needs.
I tried but I am not able to do any with the treeMap. There are is no help about Treemap. We use Progress, so Enum are not supported.
Can you give me an example of Treemap to understand how it work?
Thank you.
TreeMap
Re: TreeMap
Hi Rousseau,
TreeMap series is a new series in TeeChart v2012 as you can read in the release notes here.
You can see an example of it in the features demo at "What's New ?\Welcome !\New Series\Treemap Series"
TreeMap series is a new series in TeeChart v2012 as you can read in the release notes here.
You can see an example of it in the features demo at "What's New ?\Welcome !\New Series\Treemap Series"
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
-
- Newbie
- Posts: 31
- Joined: Fri Oct 13, 2006 12:00 am
- Location: St-Jean-Port-Joli, Canada
- Contact:
Re: TreeMap
Hi Yeray,
I saw the example but I don't understand what I do wrong. Actually we use Progress.
MapStyle and Addvalue are unknow proprieties/methode.
I know you probably don't know the Progress's Language but I think I use the properties/methods properly. Does it can come to an incompatibility?
I saw the example but I don't understand what I do wrong. Actually we use Progress.
Code: Select all
'Example from demo
With TChart1
.Series(0).Clear
With .Series(0).asTreeMap
' -1 because there's not a parent
tmp = .AddValue(10, "A", -1, clTeeColor)
....
If Combo1.ListIndex = 0 Then
TChart1.Series(0).asTreeMap.MapStyle = tmSlice
Else
TChart1.Series(0).asTreeMap.MapStyle = tmStrip
End If
Code: Select all
' Progress Code
chCtrlFrame:TChart:AddSeries(68).
chCtrlFrame:TChart:Series(0):asTreeMap:MapStyle = 1.
chCtrlFrame:TChart:Series(0):asTreeMap:AddValue (10, "A", -1, RGB-VALUE(255,0,0)).
I know you probably don't know the Progress's Language but I think I use the properties/methods properly. Does it can come to an incompatibility?
Re: TreeMap
Hi Rousseau,
This works fine in VB6:
Do you know if there's some free evaluation to test the environment?
This works fine in VB6:
Code: Select all
With TChart1
.AddSeries 68
With .Series(0).asTreeMap
.MapStyle = 1
.AddValue 10, "A", -1, RGB(255, 0, 0)
End With
End With
Maybe this language has some particularity we should consider to make the component support it.Rousseau wrote:MapStyle and Addvalue are unknow proprieties/methode.
I know you probably don't know the Progress's Language but I think I use the properties/methods properly. Does it can come to an incompatibility?
Do you know if there's some free evaluation to test the environment?
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
-
- Newbie
- Posts: 31
- Joined: Fri Oct 13, 2006 12:00 am
- Location: St-Jean-Port-Joli, Canada
- Contact:
Re: TreeMap
Hi,
http://www.progress.com/fr/openedge-lan ... nload.html
Infortunately, I had to give an answer on the feasibility of the project quickly. I therefore seek alternative that has been used.
Thank you
http://www.progress.com/fr/openedge-lan ... nload.html
Infortunately, I had to give an answer on the feasibility of the project quickly. I therefore seek alternative that has been used.
Thank you
Re: TreeMap
Hi,
Any short guide we can follow to create a simple project with just a chart?
Any short guide we can follow to create a simple project with just a chart?
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |