Dimitri Minich <
[hidden email]> wrote in message
news:
[hidden email]...
> Hi,
> I would like to draw a graph with Dolphin 4.
> I have a dictionary, the key is the date and the value is any double.
> Abscissa should represent the date and the y-axis the value.
> How can I do it?
One way might be to use an ActiveX graph program, perhaps MSGraph. You
could try to interface with it directly, or send your data to Excel via
ActiveX and graph it from there.
Another approach would be to write your own graphing code in Dolphin. It is
not too hard to do if you understand coordinate spaces and a few graphics
methods. You could look at the Scribble example to see how to do the
graphics part of it. The rest is simply a matter of scaling your data
values to screen display coordinates. You can look at Canvas to see what
drawing methods there are.
Chris