gpt4 book ai didi

javascript - 如何使用 vue-google-charts 创建组织结构图

转载 作者:行者123 更新时间:2023-12-03 06:39:16 26 4
gpt4 key购买 nike

遵循使用 vue-google-charts 插件的说明:https://www.npmjs.com/package/vue-google-charts

想要创建组织结构图:https://developers.google.com/chart/interactive/docs/gallery/orgchart

认为我必须使用 onChartReady() 但不确定如何使用组织结构图。

<template >
<div class="container">
<GChart
type="OrgChart"
:data="chartData"
@ready="onChartReady"
/>
</div>
</template>

<script>
import { GChart } from 'vue-google-charts'


export default {
components: {
GChart
},
data () {
return {
// Array will be automatically processed with visualization.arrayToDataTable function
chartData: [
[{v:'Mike', f:'Mike<div style="color:red; font-style:italic">President</div>'},
'', 'The President'],
[{v:'Jim', f:'Jim<div style="color:red; font-style:italic">Vice President</div>'},
'Mike', 'VP'],
['Alice', 'Mike', ''],
['Bob', 'Jim', 'Bob Sponge'],
['Carol', 'Bob', '']
],
options: {allowHtml : true}
}
},
methods: {
onChartReady (chart, google) {
var chart = new google.visualization.OrgChart();
chart.draw(this.chartData, this.options)
}
}
}

</script>

当我运行以下代码时,我只得到一个空白网页,其中显示错误“未处理的 promise 拒绝 TypeError:“google.visualization[type] 不是构造函数”。

我想我需要在 google.visualization.OrgChart() 中输入一些东西;但不确定我的代码是什么。

最佳答案

对于任何对使用 google 图表和组织结构图包感兴趣的人。感谢 WhiteHat 将我的注意力集中在谷歌图表包上。

您需要使用 :settings 然后传入 orgchart 包以及调用 drawChart() 的回调函数。 vue-google-charts有更多关于此的信息。 Google docs on Load the Libraries 也是如此.使用下面的代码开始。

<template >
<div class="container">
<div id="tree">
<GChart
:settings="{ packages: ['orgchart'], callback: ()=>{this.drawChart()} }"
type="OrgChart"
:data="chartData"

/>
</div>
</div>
</template>

<script>
import { GChart } from 'vue-google-charts'


export default {
components: {
GChart
},
data () {
return {
// Array will be automatically processed with visualization.arrayToDataTable function
chartData: null
}
},
methods: {
drawChart() {
this.chartData = new google.visualization.DataTable()
this.chartData.addColumn('string', 'Name')
this.chartData.addColumn('string', 'Manager')
this.chartData.addColumn('string', 'ToolTip')

// For each orgchart box, provide the name, manager, and tooltip to show.
this.chartData.addRows([
[{v:'Mike', f:'Mike<div style="color:red; font-style:italic">President</div>'},
'', 'The President'],
[{v:'Jim', f:'Jim<div style="color:red; font-style:italic">Vice President</div>'},
'Mike', 'VP'],
['Alice', 'Mike', ''],
['Bob', 'Jim', 'Bob Sponge'],
['Carol', 'Bob', '']
])

// Create the chart.
var chart = new google.visualization.OrgChart(document.getElementById('tree'));
// Draw the chart, setting the allowHtml option to true for the tooltips.
chart.draw(this.chartData, {allowHtml:true});

}
},

}

</script>

<style>
table {
border-collapse: inherit;
border-spacing: 0;
}
</style>

关于javascript - 如何使用 vue-google-charts 创建组织结构图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57704172/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com