Advanced Examples
ChartJS
Integrating charts in your online spreadsheets. See this example implemented using React.
Using CDN
<html>
<script src="https://jspreadsheet.com/v9/jspreadsheet.js"></script>
<script src="https://jsuites.net/v5/jsuites.js"></script>
<link rel="stylesheet" href="https://jsuites.net/v5/jsuites.css" type="text/css" />
<link rel="stylesheet" href="https://jspreadsheet.com/v9/jspreadsheet.css" type="text/css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Material+Icons" />
<script src="https://jspreadsheet.com/v9/plugins/formula-charts.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js@3.7.0/dist/chart.min.js"></script>
<div id="spreadsheet"></div>
<script>
jspreadsheet(document.getElementById('spreadsheet'), {
worksheets: [{
csv: '/jspreadsheet/sales.csv',
csvHeaders: false,
columns: [
{ width:'150px' },
{ width:'50px' },
{ width:'50px' },
{ width:'50px' },
{ width:'50px' },
{ width:'50px' },
{ width:'50px' },
{ width:'50px' },
{ width:'50px' },
{ width:'50px' },
{ width:'50px' },
{ width:'50px' },
{ width:'50px' },
{ width:'100px' },
],
mergeCells: {
B1: [3, 1],
E1: [10, 1]
},
rows: {
0: { height:'300px' }
},
style: {
A1: 'background-color: #e0eaff',
N1: '',
// Row 3
A3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;',
B3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;',
C3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;',
D3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;',
E3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;',
F3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;',
G3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;',
H3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;',
I3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;',
J3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;',
K3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;',
L3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;',
M3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;',
N3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;background-color: #e0eaff',
// Row 4
A4: 'border-bottom:1px solid black;font-size:0.8em;',
B4: 'border-bottom:1px solid black;font-size:0.8em;',
C4: 'border-bottom:1px solid black;font-size:0.8em;',
D4: 'border-bottom:1px solid black;font-size:0.8em;',
E4: 'border-bottom:1px solid black;font-size:0.8em;',
F4: 'border-bottom:1px solid black;font-size:0.8em;',
G4: 'border-bottom:1px solid black;font-size:0.8em;',
H4: 'border-bottom:1px solid black;font-size:0.8em;',
I4: 'border-bottom:1px solid black;font-size:0.8em;',
J4: 'border-bottom:1px solid black;font-size:0.8em;',
K4: 'border-bottom:1px solid black;font-size:0.8em;',
L4: 'border-bottom:1px solid black;font-size:0.8em;',
M4: 'border-bottom:1px solid black;font-size:0.8em;',
N4: 'border-bottom:1px solid black;font-size:0.8em;background-color: #e0eaff',
// Row 5
A5: 'border-bottom:1px solid black;font-size:0.8em;',
B5: 'border-bottom:1px solid black;font-size:0.8em;',
C5: 'border-bottom:1px solid black;font-size:0.8em;',
D5: 'border-bottom:1px solid black;font-size:0.8em;',
E5: 'border-bottom:1px solid black;font-size:0.8em;',
F5: 'border-bottom:1px solid black;font-size:0.8em;',
G5: 'border-bottom:1px solid black;font-size:0.8em;',
H5: 'border-bottom:1px solid black;font-size:0.8em;',
I5: 'border-bottom:1px solid black;font-size:0.8em;',
J5: 'border-bottom:1px solid black;font-size:0.8em;',
K5: 'border-bottom:1px solid black;font-size:0.8em;',
L5: 'border-bottom:1px solid black;font-size:0.8em;',
M5: 'border-bottom:1px solid black;font-size:0.8em;',
N5: 'border-bottom:1px solid black;font-size:0.8em;background-color: #e0eaff',
// Row 6
A6: 'border-bottom:1px solid black;font-size:0.8em;',
B6: 'border-bottom:1px solid black;font-size:0.8em;',
C6: 'border-bottom:1px solid black;font-size:0.8em;',
D6: 'border-bottom:1px solid black;font-size:0.8em;',
E6: 'border-bottom:1px solid black;font-size:0.8em;',
F6: 'border-bottom:1px solid black;font-size:0.8em;',
G6: 'border-bottom:1px solid black;font-size:0.8em;',
H6: 'border-bottom:1px solid black;font-size:0.8em;',
I6: 'border-bottom:1px solid black;font-size:0.8em;',
J6: 'border-bottom:1px solid black;font-size:0.8em;',
K6: 'border-bottom:1px solid black;font-size:0.8em;',
L6: 'border-bottom:1px solid black;font-size:0.8em;',
M6: 'border-bottom:1px solid black;font-size:0.8em;',
N6: 'border-bottom:1px solid black;font-size:0.8em;background-color: #e0eaff',
}
}]
});
</script>
</html>
Using NPM
// Jspreadsheet Pro
import jspreadsheet from 'jspreadsheet';
// Formula Premium Plugin
import '@jspreadsheet/formula-charts';
// License for Formula Plugin
jspreadsheet.setLicense('ZTQxYjc0YTRlMmJlMTY1NWY0MmYxMjUwYjdiMGU4YTMyYzM4YTA1NjVlYTk5OTdjNDFlODkzNWY1OWIyNTVlM2M4NDg2YTQ1NjM0ZjVmM2IxMTg0OGZkY2JiMmFlOGZhMTdmZDhlZGU3ZjhmMzBmZDJhMTU3ZjM1Y2E1ODFmY2MsZXlKamJHbGxiblJKWkNJNklpSXNJbTVoYldVaU9pSktjM0J5WldGa2MyaGxaWFFpTENKa1lYUmxJam94TnpNeU16VXdNakExTENKa2IyMWhhVzRpT2xzaWFuTndjbVZoWkhOb1pXVjBMbU52YlNJc0ltTnZaR1Z6WVc1a1ltOTRMbWx2SWl3aWFuTm9aV3hzTG01bGRDSXNJbU56WWk1aGNIQWlMQ0ozWldJaUxDSnNiMk5oYkdodmMzUWlYU3dpY0d4aGJpSTZJak0wSWl3aWMyTnZjR1VpT2xzaWRqY2lMQ0oyT0NJc0luWTVJaXdpZGpFd0lpd2lkakV4SWl3aVkyaGhjblJ6SWl3aVptOXliWE1pTENKbWIzSnRkV3hoSWl3aWNHRnljMlZ5SWl3aWNtVnVaR1Z5SWl3aVkyOXRiV1Z1ZEhNaUxDSnBiWEJ2Y25SbGNpSXNJbUpoY2lJc0luWmhiR2xrWVhScGIyNXpJaXdpYzJWaGNtTm9JaXdpY0hKcGJuUWlMQ0p6YUdWbGRITWlMQ0pqYkdsbGJuUWlMQ0p6WlhKMlpYSWlMQ0p6YUdGd1pYTWlYU3dpWkdWdGJ5STZkSEoxWlgwPQ==');
// Create a spreadsheet
jspreadsheet(document.getElementById('spreadsheet'), {
worksheets: [{
csv: '/jspreadsheet/sales.csv',
csvHeaders: false,
columns: [
{ width:'150px' },
{ width:'50px' },
{ width:'50px' },
{ width:'50px' },
{ width:'50px' },
{ width:'50px' },
{ width:'50px' },
{ width:'50px' },
{ width:'50px' },
{ width:'50px' },
{ width:'50px' },
{ width:'50px' },
{ width:'50px' },
{ width:'100px' },
],
mergeCells: {
B1: [3, 1],
E1: [10, 1]
},
rows: {
0: { height:'300px' }
},
style: {
A1: 'background-color: #e0eaff',
N1: '',
// Row 3
A3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;',
B3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;',
C3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;',
D3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;',
E3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;',
F3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;',
G3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;',
H3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;',
I3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;',
J3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;',
K3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;',
L3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;',
M3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;',
N3: 'border-bottom:2px solid black; font-weight:bold;font-size:0.8em;background-color: #e0eaff',
// Row 4
A4: 'border-bottom:1px solid black;font-size:0.8em;',
B4: 'border-bottom:1px solid black;font-size:0.8em;',
C4: 'border-bottom:1px solid black;font-size:0.8em;',
D4: 'border-bottom:1px solid black;font-size:0.8em;',
E4: 'border-bottom:1px solid black;font-size:0.8em;',
F4: 'border-bottom:1px solid black;font-size:0.8em;',
G4: 'border-bottom:1px solid black;font-size:0.8em;',
H4: 'border-bottom:1px solid black;font-size:0.8em;',
I4: 'border-bottom:1px solid black;font-size:0.8em;',
J4: 'border-bottom:1px solid black;font-size:0.8em;',
K4: 'border-bottom:1px solid black;font-size:0.8em;',
L4: 'border-bottom:1px solid black;font-size:0.8em;',
M4: 'border-bottom:1px solid black;font-size:0.8em;',
N4: 'border-bottom:1px solid black;font-size:0.8em;background-color: #e0eaff',
// Row 5
A5: 'border-bottom:1px solid black;font-size:0.8em;',
B5: 'border-bottom:1px solid black;font-size:0.8em;',
C5: 'border-bottom:1px solid black;font-size:0.8em;',
D5: 'border-bottom:1px solid black;font-size:0.8em;',
E5: 'border-bottom:1px solid black;font-size:0.8em;',
F5: 'border-bottom:1px solid black;font-size:0.8em;',
G5: 'border-bottom:1px solid black;font-size:0.8em;',
H5: 'border-bottom:1px solid black;font-size:0.8em;',
I5: 'border-bottom:1px solid black;font-size:0.8em;',
J5: 'border-bottom:1px solid black;font-size:0.8em;',
K5: 'border-bottom:1px solid black;font-size:0.8em;',
L5: 'border-bottom:1px solid black;font-size:0.8em;',
M5: 'border-bottom:1px solid black;font-size:0.8em;',
N5: 'border-bottom:1px solid black;font-size:0.8em;background-color: #e0eaff',
// Row 6
A6: 'border-bottom:1px solid black;font-size:0.8em;',
B6: 'border-bottom:1px solid black;font-size:0.8em;',
C6: 'border-bottom:1px solid black;font-size:0.8em;',
D6: 'border-bottom:1px solid black;font-size:0.8em;',
E6: 'border-bottom:1px solid black;font-size:0.8em;',
F6: 'border-bottom:1px solid black;font-size:0.8em;',
G6: 'border-bottom:1px solid black;font-size:0.8em;',
H6: 'border-bottom:1px solid black;font-size:0.8em;',
I6: 'border-bottom:1px solid black;font-size:0.8em;',
J6: 'border-bottom:1px solid black;font-size:0.8em;',
K6: 'border-bottom:1px solid black;font-size:0.8em;',
L6: 'border-bottom:1px solid black;font-size:0.8em;',
M6: 'border-bottom:1px solid black;font-size:0.8em;',
N6: 'border-bottom:1px solid black;font-size:0.8em;background-color: #e0eaff',
}
}]
});
More examples and documentation
To learn much more about ChartJS extensions for Jspreadsheet: