Pre loader

How i can copy to clipboard two SciCharts at a time

Welcome to the SciChart Forums!

  • Please read our Question Asking Guidelines for how to format a good question
  • Some reputation is required to post answers. Get up-voted to avoid the spam filter!
  • We welcome community answers and upvotes. Every Q&A improves SciChart for everyone

WPF Forums | JavaScript Forums | Android Forums | iOS Forums

0
0

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.

Attachments
  • You must to post comments
1
0

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

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.

Try SciChart Today

Start a trial and discover why we are the choice
of demanding developers worldwide

Start TrialCase Studies