Printing
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
this.radChartView1.Print();
Me.RadChartView1.Print()
Print with Dialog
this.radChartView1.Print(true);
Me.RadChartView1.Print(True)
Print Preview
this.radChartView1.PrintPreview();
Me.RadChartView1.PrintPreview()