Google sheet Apps Script Chart Vẽ nhiều kiểu biểu đồ trên Webapp
Giaoanlink chia sẻ tiếp đến các bạn một project mới về Google sheet Apps Script Chart Vẽ nhiều kiểu biểu đồ trên Webapp. Dữ liệu được lấy từ sheet trên Spreadsheet và biểu thị dưới dạng biểu đồ. Bạn có thể điều chỉnh để hiển thị biểu đồ dạng hình tròn, biểu đồ hình cột và biểu đồ hình line… Màu sắc cũng được chỉnh sửa theo yêu cầu rất dễ dàng. Bên dưới đây là code app script và video hướng dẫn qua.
Bạn cũng có thể tìm ra nhiều project khác tại trang tổng hợp này: mở trang tổng hợp
Các project excel khác:
- Google sheet apps script | Scan QR code – Filter and get data table display on webapp
- Google sheet apps script Filter to get data to display on webapp, fill background color for data row
- Google sheet Apps script Webapp | Project Quản lý đơn hàng – Cập nhật sản phẩm – In phiếu kiểm soát
- Google sheet Apps script Webapp | Tạo QR Code động – Tự động load mã QR mới khi nội dung mã hóa đổi
- Googlesheet Apps script Webapp | Tạo trang trắc nghiệm online như Quiz
- Google sheet Apps script | Trang trắc nghiệm Quiz – Cập nhật câu hỏi, trả lời, thời gian đếm ngược
- Google sheets | Number to text, Hàm đọc số thành chữ Ứng dụng taoh hóa đơn, phiếu chi.
- Googlesheet Apps script Webapp | Tạo mã QR Code từ nội dung nhập vào – QR Code Generator
- Google sheet apps script | Dropdown đơn giản lấy dữ liệu từ google sheet – Simple dropdown
- Apps script Webapp CSS – HTML – JS | Tạo ứng dụng Ghi chú trên nền tảng webapp – website
Code app script trang “Code.gs”
function doGet() {
return HtmlService.createTemplateFromFile('index')
.evaluate()
.addMetaTag('viewport', 'width=device-width, initial-scale=1')
.setXFrameOptionsMode(HtmlService.XFrameOptionsMode.ALLOWALL)
}
function getData(){
let ss = SpreadsheetApp.getActiveSpreadsheet().getSheetByName('Data')
let dataset = ss.getDataRange().getDisplayValues()
let data1 = dataset.map(r => [r[1],r[2],r[3],r[4],r[5]])
let name = dataset.map(r => [r[0]])
let header = data1.shift()
Logger.log(data1)
Logger.log(header)
return {name: name[2],header: header, data:data1[1]}
}
Code app script trang “index.html”
<!DOCTYPE html>
<html>
<head>
<!--https://youtube.com/netmediacctv-->
<base target="_top">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<style>
.border {
border: 3px solid green;
}
</style>
</head>
<body>
<h1 style="text-align: center; color: red"> CHART TRÊN WEBAPP</h1>
<div class="border" style="width: 500px;" >
<canvas id="myChart"></canvas>
</div>
<script>
google.script.run.withSuccessHandler(output).getData()
function output(res) {
const ctx = document.getElementById('myChart') ;
new Chart(ctx, {
type: 'line',
data: {
labels: res.header,
datasets: [{
label: res.name,
data: res.data.map(Number),
backgroundColor: [
'#f20808',
'#08f23f',
'#FF6390',
'#086bf2',
'#f29708',
],
borderColor: '#000000',
borderWidth: 1
}]
},
options: {
scales: {
y: {
beginAtZero: true
}
}
}
});
}
</script>
</body>
</html>