User (Legacy) Posted May 22, 2003 Report Share Posted May 22, 2003 Hi there, Is there any way to create a empty bar chart without any data? The default bar chart has some random bars on it. Thanks. Jason Link to comment Share on other sites More sharing options...
Software FX Posted May 22, 2003 Report Share Posted May 22, 2003 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 More sharing options...
User (Legacy) Posted June 3, 2003 Author Report Share Posted June 3, 2003 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 More sharing options...
Software FX Posted June 4, 2003 Report Share Posted June 4, 2003 This message is displayed using the Chart Default font, you can change this font using the Font property and re-set it to a better value once data is set. -- FP Software FX, Inc. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.