Jump to content
Software FX Community

Re: Is there any way to create a graph without using the control on a form?


User (Legacy)

Recommended Posts

Why not?  I've done this in an Access module to get the default chart. 

Sub PrintChart()

Dim obj As ChartfxLib.ChartFX

Set obj = New ChartfxLib.ChartFX

obj.Export CHART_BITMAP, "C:\TEMP\PrintChart.bmp"

Set obj = Nothing

End Sub

Steve

Joe <planetjoe@hotmail.com> wrote in message news:DE0379D14694D211B4CE00609770710D04B1C9@sftfx-221.wamnet.net...

> Is there any way to create a graph without using the control on a form?

>

> Id like to do something like

>

> Dim cfx as ChartFX

> Set cfx = new chartfx

>

> 'add points to the graph

>

> cfx.export XXX_XXXXXXX, "c:\ssss.bmp"

>

> Any help would be greatly appreciated.

>

> Thanks,

> Joe

>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...