User (Legacy) Posted April 30, 2004 Report Posted April 30, 2004 If I am plotting several days worth of date/time values, is it possible to use interlacing on the days being plotted. My X axis has a major tick every three hours and a minor every hour. I would like the background to alternate for each day so the user can see easily where one day begins and ends.
User (Legacy) Posted April 30, 2004 Author Report Posted April 30, 2004 I figured it out. I need to use .Stripe. "David Peters" <davidp@matrixproductdev.com> wrote in message news:DD5ZmVsLEHA.2900@webserver3.softwarefx.com... > If I am plotting several days worth of date/time values, is it possible to > use interlacing on the days being plotted. My X axis has a major tick every > three hours and a minor every hour. I would like the background to > alternate for each day so the user can see easily where one day begins and > ends. > >
Software FX Posted April 30, 2004 Report Posted April 30, 2004 There is also an Interlaced property in the axis that will make this easier. ChartFX1.Axis(AXIS_X).Grid = True ChartFX1.Axis(AXIS_X).Style = ChartFX1.Axis(AXIS_X).Style Or AS_INTERLACED -- FP Software FX
User (Legacy) Posted May 5, 2004 Author Report Posted May 5, 2004 I am using a light gray for painting portions of the background. The painting shows up on the screen, but they won't show up if I print the graph. Should it show up? I've tried two different printers with the same results. "SoftwareFX Support" <noreply@softwarefx.com> wrote in message news:V0EQ$nsLEHA.2900@webserver3.softwarefx.com... > There is also an Interlaced property in the axis that will make this easier. > > ChartFX1.Axis(AXIS_X).Grid = True > ChartFX1.Axis(AXIS_X).Style = ChartFX1.Axis(AXIS_X).Style Or AS_INTERLACED > > > -- > FP > Software FX > >
Software FX Posted May 6, 2004 Report Posted May 6, 2004 If the printer is not in color, only black-and white will be used by default. To use gray-scale do: chart.Printer.ForceColors = true -- FP Software FX
Recommended Posts
Archived
This topic is now archived and is closed to further replies.