copied and printed TeeChart colors
Posted: Tue Feb 26, 2019 12:04 pm
In my current application when I copy:
Private Sub ButtonCopyGraph_Click(sender As Object, e As EventArgs) Handles ButtonCopyGraph.Click
Dim JPEGf As Steema.TeeChart.Export.JPEGFormat = MainForm.TChartBMS.Export.Image.JPEG
JPEGf.Height = 500
JPEGf.Width = 700
JPEGf.GrayScale = False
JPEGf.Quality = 100
JPEGf.CopyToClipboard()
End Sub
The color of the chart background is black even though displayed in my application it is a light cream color. Can anyway suggest a fix so that the exported image colors match the displayed chart?
Thanks
Rob
Private Sub ButtonCopyGraph_Click(sender As Object, e As EventArgs) Handles ButtonCopyGraph.Click
Dim JPEGf As Steema.TeeChart.Export.JPEGFormat = MainForm.TChartBMS.Export.Image.JPEG
JPEGf.Height = 500
JPEGf.Width = 700
JPEGf.GrayScale = False
JPEGf.Quality = 100
JPEGf.CopyToClipboard()
End Sub
The color of the chart background is black even though displayed in my application it is a light cream color. Can anyway suggest a fix so that the exported image colors match the displayed chart?
Thanks
Rob