PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV 2024 → Charting: Lines on Stock Charts...not
Charting: Lines on Stock Charts...not
Débuté par Craig Chamberlin, 28 jan. 2004 01:29 - 1 réponse
Posté le 28 janvier 2004 - 01:29
Hi All,
I really hope I am missing something very obvious, but I have been unsuccessful at adding a curved line, or any line to a graph of type grBarCharts. I even overlayed another transparent image, created another chart, that works sort of, but they don't overlay exactly and well it's a mess.
I have included the url of an example of what I need to do with charts...if I can't do this with WinDev, its a deal-breaker.
Hoping, hoping,
Craig
Posté le 28 janvier 2004 - 12:15
Hi,
I really hope I am missing something very obvious, but I have been
unsuccessful at adding a curved line, or any line to a graph of type
grBarCharts.

I'm afraid your not missing anything.
I even overlayed another transparent image, created another chart, that
works sort of, but they don't overlay exactly and well it's a mess.

I don't know how you have tried this? But maybe another solution:
---
grCreate("Chart",grBarCharts)
grAddData()
...
grDestinationControl("Chart","image1") //image1=image control
grDraw("Graphe1")
grDestinationControl("Chart","image2")
grType("Chart",grCurve)
dCopyBlt("image1","image2")
grDraw("Chart")
---
I have included the url of an example of what I need to do with charts...if I
can't do this with WinDev, its a deal-breaker.

You can do it with Windev for sure, only not sure if you can do it nicely
without using API/ActiveX ...
Greetings,
Peter