Re: [Plplot-devel] [Plplot-general] wxWidgets driver -- change thedefault blackbackground

2016-10-06 Thread Pedro Vicente
Phil I believe there is stiil an issue with this solution my sample worked because I had plcol0(8); that does the plot in brown color if I try to plot in black color (on white bacground now) by doing plcol0(0); then I have no plot, since color 0 is now white is there a way with this

Re: [Plplot-devel] [Plplot-general] wxWidgets driver -- change the default blackbackground

2016-10-06 Thread Pedro Vicente
Hi Phil, Alan This solution worked for me, thanks > The easiest way to do this at the moment is something like > > wxPLplotstream* pls = plotwindow->GetStream(); > pls->adv( 0 ); > pls->scolbg(255, 255, 255); > pls->clear(); > //rest of your plotting code > I'm very open to better ways > to

Re: [Plplot-devel] [Plplot-general] wxWidgets driver -- change the default blackbackground

2016-10-06 Thread Phil Rosenberg
Hi Pedro The easiest way to do this at the moment is something like wxPLplotstream* pls = plotwindow->GetStream(); pls->adv( 0 ); pls->scolbg(255, 255, 255); pls->clear(); //rest of your plotting code If you have multiple subpages then you will need to do this on each page. Also if your subpages