SciChart® the market leader in Fast WPF Charts, WPF 3D Charts, iOS Chart, Android Chart and JavaScript Chart Components
How do i copy two Scicharts placed vertically on grid in a application.
By now i can copy at a time single SciChart.
Attached is a runtime window where i need to copy both SciCharts with single right click on copy.
Currently i am using 3.1Version.
Hi Raghupathy,
I would suggest subscribing to the MouseUp event on your view or on a panel where these two surfaces are placed and just export them to bitmap inside:
private void ExportToBitmapOnMouseUp(object sender, RoutedEventArgs e)
{
var bitmap1 = Surface.ExportToBitmapSource();
var bitmap2 = Surface.ExportToBitmapSource();
//TODO copy the bitmaps to clipboard
}
Hope this helps!
Best regards,
Yuriy
Please login first to submit.