New to Telerik UI for WinForms? Start a free 30-day trial
Printing
Updated over 6 months ago
RadChartView provides printing support, which allows you to print the chart content by using RadPrintDocument You are able to print:
-
Series within the chart
-
Title
-
Legend
RadChartView has two public methods available for printing - Print and PrintPreview. The first method will directly send a print job to the default printer. This method has one overload available which can show a system PrintDialog with the available printers and their options.
Direct Printing
C#
this.radChartView1.Print();
Print with Dialog
C#
this.radChartView1.Print(true);
Print Preview
C#
this.radChartView1.PrintPreview();