Jump to content
Software FX Community

How to Create a empty bar chart?


User (Legacy)

Recommended Posts

To have a completely empty chart with no axes:

chart1.ClearData(ClearDataFlag.Data);

To have a chart with an empty x-axis of an arbitrary number of points:

chart1.OpenData(COD.Values | COD.Remove | COD.AllocHidden,1,<arbitrary

number of points you want to see along the x-axis>);

chart1.CloseData(COD.Values);

--

FP

Software FX, Inc.

Link to comment
Share on other sites

  • 2 weeks later...

Thanks, in this way I got a empty chart with "No Data Available" on it.

Is it possible to change the size of the fonts? I'd like to enlarge it.

Thanks agin,

Jason

"SoftwareFX Support" <support@softwarefx.com> wrote in message

news:X3R33EJIDHA.2132@webserver1.softwarefx.com...

> To have a completely empty chart with no axes:

>

> chart1.ClearData(ClearDataFlag.Data);

>

> To have a chart with an empty x-axis of an arbitrary number of points:

>

> chart1.OpenData(COD.Values | COD.Remove | COD.AllocHidden,1,<arbitrary

> number of points you want to see along the x-axis>);

> chart1.CloseData(COD.Values);

>

> --

> FP

> Software FX, Inc.

>

>

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...