The rendered chart can be printed directly from the browser by calling the public method print. ID of the chart div element must be passed as argument to that method.
import { Chart, ColumnSeries, Category, Legend } from '@syncfusion/ej2-charts';
Chart.Inject(ColumnSeries, Category, Legend);
import { Button } from '@syncfusion/ej2-buttons';
import { EmitType } from '@syncfusion/ej2-base';
let chart: Chart = new Chart({
//Initializing Primary X Axis
primaryXAxis: {
title: 'Manager',
valueType: 'Category',
majorGridLines: { width: 0 }
},
//Initializing Primary Y Axis
primaryYAxis:
{
title: 'Sales',
minimum: 0,
maximum: 20000,
majorGridLines: { width: 0 }
},
//Initializing Chart Series
series: [
{
type: 'Column',
dataSource: [{ x: 'John', y: 10000 }, { x: 'Jake', y: 12000 }, { x: 'Peter', y: 18000 },
{ x: 'James', y: 11000 }, { x: 'Mary', y: 9700 }],
xName: 'x', width: 2,
yName: 'y'
}
],
//Initializing Chart title
title: 'Sales Comparision',
}, '#element');
document.getElementById('print').onclick = () => {
chart.print();
};
<!DOCTYPE html>
<html lang="en">
<head>
<title>EJ2 Animation</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Typescript UI Controls" />
<meta name="author" content="Syncfusion" />
<link href="index.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.38/system.js"></script>
<script src="systemjs.config.js"></script>
</head>
<body>
<div id='loader'>Loading....</div>
<div id='container'>
<div id='element' style="float: left "></div>
<button id= "print" type="button" width ='15%' style="float: right">Print</button>
</div>
</body>
</html>
The rendered chart can be exported to JPEG
, PNG
, SVG
, or PDF
format using the export method in chart. The input parameters for this method are Export Type
for format and fileName
for result.
The optional parameters for this method are,
orientation
- either portrait or landscape,controls
- pass collections of controls for multiple export,width
- width of chart export, andheight
- height of chart export.import { Chart, ColumnSeries, Category, Legend, Export } from '@syncfusion/ej2-charts';
Chart.Inject(ColumnSeries, Category, Legend, Export);
import { EmitType } from '@syncfusion/ej2-base';
let chart: Chart = new Chart({
//Initializing Primary X Axis
primaryXAxis: {
title: 'Manager',
valueType: 'Category',
majorGridLines: { width: 0 }
},
//Initializing Primary Y Axis
primaryYAxis:
{
title: 'Sales',
minimum: 0,
maximum: 20000,
majorGridLines: { width: 0 }
},
//Initializing Chart Series
series: [
{
type: 'Column',
dataSource: [{ x: 'John', y: 10000 }, { x: 'Jake', y: 12000 }, { x: 'Peter', y: 18000 },
{ x: 'James', y: 11000 }, { x: 'Mary', y: 9700 }],
xName: 'x', width: 2,
yName: 'y'
}
],
//Initializing Chart title
title: 'Sales Comparision',
}, '#element');
document.getElementById('print').onclick = () => {
chart.exportModule.export('PNG', 'result');
};
<!DOCTYPE html>
<html lang="en">
<head>
<title>EJ2 Animation</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Typescript UI Controls" />
<meta name="author" content="Syncfusion" />
<link href="index.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.38/system.js"></script>
<script src="systemjs.config.js"></script>
</head>
<body>
<div id='loader'>Loading....</div>
<div id='container'>
<div id='element' style="float: left "></div>
<div id='element1' style="float: left "></div>
<button id= "print" type="button" width ='15%' style="float: right">Export</button>
</div>
</body>
</html>
You can export the multiple charts in single page by passing the multiple chart objects in the export method of chart.
To export multiple charts in a single page, follow the given steps:
Step 1:
Initially, render more than one chart to export, and then add button to export the multiple charts. In button click, call the export private method in charts, and then pass the multiple chart objects in the export method.
import { Chart, ColumnSeries, Category, Legend,Export } from '@syncfusion/ej2-charts';
Chart.Inject(ColumnSeries, Category, Legend,Export);
import { EmitType } from '@syncfusion/ej2-base';
let chart: Chart = new Chart({
//Initializing Primary X Axis
primaryXAxis: {
title: 'Manager',
valueType: 'Category',
majorGridLines: { width: 0 }
},
//Initializing Primary Y Axis
primaryYAxis:
{
title: 'Sales',
minimum: 0,
maximum: 20000,
majorGridLines: { width: 0 }
},
//Initializing Chart Series
series: [
{
type: 'Column',
dataSource: [{ x: 'John', y: 10000 }, { x: 'Jake', y: 12000 }, { x: 'Peter', y: 18000 },
{ x: 'James', y: 11000 }, { x: 'Mary', y: 9700 }],
xName: 'x', width: 2,
yName: 'y'
}
],
//Initializing Chart title
title: 'Sales Comparision',
}, '#element');
let chart1: Chart = new Chart({
//Initializing Primary X Axis
primaryXAxis: {
title: 'Manager',
valueType: 'Category',
majorGridLines: { width: 0 }
},
//Initializing Primary Y Axis
primaryYAxis:
{
title: 'Sales',
minimum: 0,
maximum: 20000,
majorGridLines: { width: 0 }
},
//Initializing Chart Series
series: [
{
type: 'Column',
dataSource: [{ x: 'John', y: 10000 }, { x: 'Jake', y: 12000 }, { x: 'Peter', y: 18000 },
{ x: 'James', y: 11000 }, { x: 'Mary', y: 9700 }],
xName: 'x', width: 2,
yName: 'y'
}
],
//Initializing Chart title
title: 'Sales Comparision',
}, '#element1');
document.getElementById('print').onclick = () => {
chart.exportModule.export('PNG', Chart, null, [chart, chart1]);;
};
<!DOCTYPE html>
<html lang="en">
<head>
<title>EJ2 Animation</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Typescript UI Controls" />
<meta name="author" content="Syncfusion" />
<link href="index.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.38/system.js"></script>
<script src="systemjs.config.js"></script>
</head>
<body>
<div id='loader'>Loading....</div>
<div id='container'>
<div id='element' style="float: left "></div>
<div id='element1' style="float: left "></div>
<button id= "print" type="button" width ='15%' style="float: right">Export</button>
</div>
</body>
</html>