| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <template>
- <view id="chart">
- </view>
- </template>
- <script>
- import Highcharts from 'highcharts'
- export default {
- data() {
- return {
- options: {
- chart: {
- type: 'bar' //指定图表的类型,默认是折线图(line)
- },
- title: {
- text: '我的第一个图表' // 标题
- },
- xAxis: {
- categories: ['苹果', '香蕉', '橙子'] // x 轴分类
- },
- yAxis: {
- title: {
- text: '吃水果个数' // y 轴标题
- }
- },
- series: [{ // 数据列
- name: '小明', // 数据列名
- data: [1, 0, 4] // 数据
- }, {
- name: '小红',
- data: [5, 7, 3]
- }]
- }
- }
- },
- onLoad() {
- HighCharts.chart("chart",options)
- },
- methods: {
- }
- }
- </script>
- <style lang="scss">
- #chart{
- width:750rpx;
- height:500rpx;
- }
- </style>
|