--- theme: default ---
# SlidevでGoogle Chartsを使う
<GoogleCharts type="PieChart" :data="[ ['タスク', '時間'], ['睡眠', 8], ['仕事', 8], ['趣味', 4], ['その他', 4] ]" :options="{ title: '1日の時間配分', is3D: true }" />
---
# 別のグラフ(棒グラフ)の例
<GoogleCharts type="BarChart" :data="[ ['年', '売上', '利益'], ['2024', 1000, 400], ['2025', 1170, 460], ['2026', 660, 1120] ]" :options="{ title: '業績推移' }" />
---
# 世界のデータ(GeoChart)
<GoogleCharts type="GeoChart" :data="[ ['Country', 'Popularity'], ['Germany', 200], ['United States', 300], ['Brazil', 400], ['Canada', 500], ['France', 600], ['Japan', 700] ]" />
|