Hi,
print i chart with this code:
string
filename =
"ExportedChart.png"
;
using
(Stream fileStream = File.Open(filename, FileMode.OpenOrCreate))
{
Telerik.Windows.Media.Imaging.ExportExtensions.ExportToImage(
this
.chart, fileStream,
new
PngBitmapEncoder());
}
the problem ist, that the background of the png-file ist black! how can i change this to white?
thanks a lot
Rene