How to create an organization chart using vue-google-charts
问题 Followed instructions for using vue-google-charts plugin : https://www.npmjs.com/package/vue-google-charts Want to create an organization chart : https://developers.google.com/chart/interactive/docs/gallery/orgchart Figured I had to use onChartReady() but not sure how to do it with organization charts. <template > <div class="container"> <GChart type="OrgChart" :data="chartData" @ready="onChartReady" /> </div> </template> <script> import { GChart } from 'vue-google-charts' export default {