创建Vue2项目,引入chart.js,并生成柱形图

基础创建

1. 创建一个新的 Vue 2 项目

如果你还没有创建项目,可以使用 Vue CLI 来创建一个新项目。首先确保你已经安装了 Node.js 和 npm。然后安装 Vue CLI 并创建一个新项目。

npm install -g @vue/cli

vue create my-vue-chart-project

在创建过程中选择 Vue 2 版本。

2. 安装 Chart.js 库

进入项目目录,通过 npm 或 yarn 安装 Chart.js 库。

cd my-vue-chart-project

npm install chart.js@2.9.4 --save # 安装适用于 Vue 2 的 Chart.js 版本


柱形图

3. 创建 BarChart 组件(柱形图)

在 src/components 目录下创建一个新的 Vue 组件 BarChart.vue。

<template>

  <div>

    <canvas id="bar-chart"></canvas>

  </div>

</template>

<script>

import Chart from 'chart.js';

export default {

  name: 'BarChart',

  props: {

    data: {

      type: Array,

      required: true

    },

    labels: {

      type: Array,

      required: true

    },

    title: {

      type: String,

      required: true

    },

  },

  mounted() {

    this.createBarChart();

  },

  methods: {

    createBarChart() {

      const ctx = document.getElementById('bar-chart').getContext('2d');

      new Chart(ctx, {

        type: 'bar',

        data: {

          labels: this.labels,

          datasets: [{

            label: this.title,

            backgroundColor: 'rgba(255, 99, 132, 0.2)',

            borderColor: 'rgba(255, 99, 132, 1)',

            borderWidth: 1,

            data: this.data

          }]

        },

        options: {

          scales: {

            yAxes: [{

              ticks: {

                beginAtZero: true

              }

            }]

          }

        }

      });

    }

  }

};

</script>

这个组件接收两个 prop:data 和 labels,分别表示柱形图的数据和标签。


4. 在父组件中使用 BarChart 组件

首先,你需要在父组件(例如 App.vue)中导入 BarChart 组件,并注册它。

<template>

  <div id="app">

    <div style="width:45%; margin-bottom: 20px;margin-left: 20px;">

      <bar-chart :data="chartData1" :labels="chartLabels1" :title="title1" />

    </div>

  </div>

</template>

<script>

import BarChart from './components/BarChart.vue';

export default {

  name: 'App',

  components: {

    BarChart

  },

  data() {

    return {

      chartLabels1: ['January', 'February', 'March', 'April', 'May', 'June', 'July','Auguest','September','October','November','December'],

      chartData1: [0, 10, 5, 2, 20, 30, 45,60,65,75,85,100],

      title1: '柱形图'

    };

  }

};

</script>

在这里,我们定义了 chartData1 和 chartLabels1,然后将它们传递给 BarChart 组件。


5. 运行项目

现在,你可以启动项目来查看柱形图。

npm run serve

访问浏览器中的项目地址(通常是 http://localhost:8080),你应该能够看到你的柱形图。

最后根据你的需求,将后端数据放到chartLabels与chartData中即可

折线图

6.创建LineChart组件(折线图)

创建一个组件用于显示折线图: 在src/components目录下创建一个新的组件文件LineChart.vue,并在其中编写以下代码

<template>

  <div>

    <canvas id="line-chart" ref="chart"></canvas>

  </div>

</template>

<script>

import Chart from 'chart.js';

export default {

  name: 'LineChart',

  props: {

    data: {

      type: Array,

      required: true

    },

    labels: {

      type: Array,

      required: true

    },

    title: {

      type: String,

      required: true

    }

  },

  mounted() {

    this.renderChart();

  },

  methods: {

    renderChart() {

      const ctx = this.$refs.chart.getContext('2d');

      new Chart(ctx, {

        type: 'line',

        data: {

          labels: this.labels,

          datasets: [{

            label: this.title,

            data: this.data,

            fill: false,

            borderColor: 'rgb(75, 192, 192)',

            tension: 0.1

          }]

        },

        options: {

          // responsive: true,

          // maintainAspectRatio: false,

          scales: {

            yAxes: [{

              ticks: {

                beginAtZero: true

              }

            }]

          }

        }

      });

    }

  }

};

</script>

<style scoped>

canvas {

  max-width: 600px;

  margin: 0 auto;

}

</style>


7.在App.vue中使用折线图组件

打开src/App.vue文件,并进行以下修改:

<template>

  <div id="app">

    <div style="width:45%;margin-bottom: 20px;margin-left: 20px;">

      <LineChart :data="chartData2" :labels="chartLabels2" :title="title2" />

    </div>

  </div>

</template>

<script>

import LineChart from './components/LineChart.vue';

export default {

  name: 'App',

  components: {

    LineChart

  },

  data() {

    return {

      chartLabels2: ['January', 'February', 'March', 'April', 'May', 'June', 'July','Auguest','September','October','November','December'],

      chartData2: [0, 10, 5, 2, 20, 30, 45,60,65,75,85,100],

      title2: '折线图'

    };

  }

};

</script>

<style>

#app {

  text-align: center;

}

</style>


8.运行项目:

在终端中执行以下命令启动项目:

npm run serve

等待编译完成后,在浏览器中访问http://localhost:8080(或其他指定的端口),即可看到显示了折线图的页面。

这样,你就成功地在Vue 2.x项目中引入了Chart.js,并生成了一个简单的折线图。你可以根据自己的需求进一步配置和美化图表。


饼图

9.创建PieChart组件用于显示饼图

在src/components目录下创建一个新的组件文件PieChart.vue,并在其中编写以下代码:

<template>

  <div>

    <canvas id="pie-chart"></canvas>

  </div>

</template>

<script>

import Chart from 'chart.js';

export default {

  name: 'PieChart',

  props: {

    data: {

      type: Array,

      required: true

    },

    labels: {

      type: Array,

      required: true

    },

    title: {

      type: String,

      required: true

    }

  },

  mounted() {

    this.createBarChart();

  },

  methods: {

    createBarChart() {

      const ctx = document.getElementById('pie-chart').getContext('2d');

      new Chart(ctx, {

        type: 'pie',

        data: {

          labels: this.labels,

          datasets: [{

            label: this.title,

            backgroundColor: [

              'rgb(127,255,212)',

              'rgb(255,0,0)',

              'rgb(255, 99, 132)',

              'rgb(0,255,0)',

              'rgb(54, 162, 235)',

              'rgb(255, 205, 86)',

              'rgb(0,255,255)',

              'rgb(255,255,0)',

              'rgb(8,46,84)',

              'rgb(106,90,205)',

              'rgb(54,94,15)',

              'rgb(255,0,255)'

            ],

            borderColor: [

            'rgb(127,255,212)',

              'rgb(255,0,0)',

              'rgb(255, 99, 132)',

              'rgb(0,255,0)',

              'rgb(54, 162, 235)',

              'rgb(255, 205, 86)',

              'rgb(0,255,255)',

              'rgb(255,255,0)',

              'rgb(8,46,84)',

              'rgb(106,90,205)',

              'rgb(54,94,15)',

              'rgb(255,0,255)'

            ],

            borderWidth: 1,

            data: this.data

          }]

        },

        options: {

          scales: {

            yAxes: [{

              ticks: {

                beginAtZero: true

              }

            }]

          }

        }

      });

    }

  }

};

</script>

10.在App.vue中使用饼图组件

打开src/App.vue文件,并进行以下修改:

<template>

  <div id="app">

    <div style="width:45%; margin-bottom: 20px;margin-left: 20px; margin-top: 20px">

      <PieChart :data="chartData3" :labels="chartLabels3" :title="title3"  />

    </div>

  </div>

</template>

<script>

import PieChart from './components/PieChart.vue';

export default {

  name: 'App',

  components: {

    PieChart

  },

  data() {

    return {

      chartLabels3: ['January', 'February', 'March', 'April', 'May', 'June', 'July','Auguest','September','October','November','December'],

      chartData3: [0, 10, 5, 2, 20, 30, 45,60,65,75,85,100],

      title3: '饼图'

    };

  }

};

</script>

<style>

#app {

  text-align: center;

}

</style>


11.运行项目:

在终端中执行以下命令启动项目:

npm run serve

等待编译完成后,在浏览器中访问http://localhost:8080(或其他指定的端口),即可看到显示了饼图的页面。

这样,你就成功地在Vue 2.x项目中引入了Chart.js,并生成了一个简单的饼图。你可以根据自己的需求进一步配置和美化图表。


文章

————————————————

版权声明:本文为CSDN博主「黯然神伤888」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。

原文链接:https://blog.csdn.net/dante1987/article/details/134825361

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,454评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,553评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,921评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,648评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,770评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,950评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,090评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,817评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,275评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,592评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,724评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,409评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,052评论 3 316
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,815评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,043评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,503评论 2 361
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,627评论 2 350

推荐阅读更多精彩内容