Jump to content
Software FX Community

Color Printing


User (Legacy)

Recommended Posts

Copied from a thread on chartfx.net.general.

Can you try the following code in a button handler of a WinForm app when

using your printer drivers ?

PrintDialog printDialog = new PrintDialog();

printDialog.Document = new System.Drawing.Printing.PrintDocument();

DialogResult dr = printDialog.ShowDialog();

if (dr == DialogResult.OK) {

MessageBox.Show(printDialog.PrinterSettings.SupportsColor.ToString(),"Suppor

ts Color");

}

printDialog.Dispose();

BTW, if you know for sure that all your printers are color printers you may

temporarily workaround this issue by turning on the ForceColors property of

our Chart.Printer object.

--

Regards,

JC

Software FX Support

"Julio Delgado" <jdelgado89@hotmail.com> wrote in message

news:vHSTcW8DEHA.200@webserver3.softwarefx.com...

> Hi:

>

> I am trying to print a chart and no matter which color printer I used the

> chart is Print in Monochrome. What can I do to print a color chart

>

> Thanks

>

>

post-2107-13922365929357_thumb.png

post-2107-13922377118251_thumb.png

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...