New to Telerik UI for WinForms? Start a free 30-day trial
Printing
Updated on May 7, 2026
RadSparkline supports printing out of the box. You can use the Print or the PrintPreview to directly print the contents of the Sparkline control.
Example 1: Use the PrintPreview Method.
C#
private void radButton2_Click(object sender, EventArgs e)
{
radSparkline1.PrintPreview();
}