是否可以导出/序列化Google图表设置?
我想导出我的谷歌图表并将其存储到数据库中。
让我解释一下。
我正在创建图表编辑器,用户可以在其中更改某些设置(标题,颜色等)。例如,如果用户想要更改标题,我使用此chart.m.title = 'My new title'
。用户点击保存按钮后,我想序列化设置并将其存储在DB中(API调用我的后端 - 无论如何这不是我要求的。)。
这是来自Google Chart Documentation的简单图表代码:
<html>
<head>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript">
google.charts.load('current', {'packages':['corechart']});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Year', 'Sales', 'Expenses'],
['2013', 1000, 400],
['2014', 1170, 460],
['2015', 660, 1120],
['2016', 1030, 540]
]);
var options = {
title: 'Company Performance',
hAxis: {title: 'Year', titleTextStyle: {color: '#333'}},
vAxis: {minValue: 0}
};
var chart = new google.visualization.AreaChart(document.getElementById('chart_div'));
chart.draw(data, options);
}
</script>
</head>
<body>
<div id="chart_div" style="width: 100%; height: 500px;"></div>
</body>
</html>
我正在寻找这种方法:
// this values I will store in my database
// and it will help me create same chart in future
// with chart.draw(datasource, options);
var options = chart.options()
var datasource = chart.datasource()