11

我用 chart.js 创建了一个简单的响应式 HTML + JS 图表,效果很好。我决定在 Vue CLI 中执行此操作,因此尝试将其切换到 vue-chartjs,但相同的图表总是呈现比我的窗口高 33% 左右,因此呈现垂直滚动条(宽度很好)。我用我渲染的一个简单的示例图重新创建了这个问题:

import {Line} from 'vue-chartjs'
export default {
  extends: Line,
  mounted () {
    this.renderChart(data, options)
  } 
} 

请注意 the datais trivial 和 the optionsare {}

如果我在我的 Vue 组件中使用 chart.js,而不是 vue-chartjs,那么它可以正常工作。即,我只是从我的组件中删除上面的代码并将其更改为以下代码,然后它就可以正常呈现,就像我的示例 HTML + chart.js 版本一样。

import Chart from 'chart.js'
function mount(el) {
    return new Chart(
        document.getElementById(el).getContext('2d'), {
        type: 'line',
        data: data,
        options: options,
    })
}

export default {
    template: '<canvas id="chart"></canvas>',
    mounted () {
        self.chart = mount('chart')
    }
}

我当然使用默认值,responsive: true并且maintainAspectRatio: false在任何地方都没有明确的 CSS 或大小设置。

为什么我在使用 vue-chartjs 时无法让图表正确渲染高度?我正在使用 vue-chartjs 3.4.2 版,但也尝试了几个版本。我查看了整个 github 错误跟踪器,但没有看到任何相关内容。

4

3 回答 3

22

更新:

您应该通过optionsas 道具或本地。但需要补充:

  • 响应式:真
  • 保持纵横比:假

所需的高度以及您所说的选项。这是它对我的工作方式:

选项:

options: {
                    scales: {
                        yAxes: [
                            {
                                ticks: {
                                    beginAtZero: true
                                }
                            }]
                    },
                    responsive: true,
                    maintainAspectRatio: false
                }

在模板中:

<bin-graph-weight :chart-data="datacollection" :styles="myStyles" :options="datacollection.options"/>

图组件.js:

import { Line, mixins } from 'vue-chartjs'

const { reactiveProp } = mixins

export default {
    extends: Line,
    mixins: [reactiveProp],
    props: ['options'],
    mounted () {
    // this.chartData is created in the mixin.
        this.renderChart(this.chartData, this.options)
    },
    // If you want to pass options please create a local options object
    watch: {
        chartData () {
            this.$data._chart.update()
        }
    }
}

于 2019-05-23T08:18:22.797 回答
5

还有高度溢出和响应能力的问题,通过引入占用 100% 空间的 flex 父容器来解决。设置响应和比率选项后(查看相关的 chartjs 文档):

options: {
  // ..
  responsive: true,
  maintainAspectRatio: true
}

我使用以下 css 来填充 100% 的父级(TheChartvue-chartjs 组件在哪里。基本上需要确保图表的父级始终填充其自身父级的 100%):

Vue模板

<v-container class="chart-container">
  <TheChart :chartdata="chartData" :options="chartOptions" />
</v-container>

scss:

.chart-container {
  flex-grow: 1;
  min-height: 0;

  > div {
    position: relative;
    height: 100%;
  }
}
于 2019-11-20T03:45:38.920 回答
0

通过响应,图表重新呈现承诺并实际设置了两次。使用 Vue.js 中的观察者,您可以在每次更改 chartData 时重新渲染。

图表组件:

<script>
import { Bar, mixins } from 'vue-chartjs';

const { reactiveProp } = mixins;

export default {
  extends: Bar,
  mixins: [reactiveProp],
  props: ['chartOptions'],
  mounted() {
    this.renderChart(this.chartData, this.chartOptions);
  },
  watch: {
    chartData() {
      this.renderChart(this.chartData, this.chartOptions);
    },
  },
};
</script>

与动态样式一起使用。

图表属性:

<template>
  <div style="height:300px;">
    <bar-chart :styles="myStyles" :chart-data="dataCollection"
      :chart-options="chartOptions"></bar-chart>
  </div>
</template>

<script>
import BarChart from './ChartBar.vue';

export default {
  components: {
    BarChart,
  },
  props: ['dataCollection'],
  data() {
    return {
      myStyles: {
        height: '300px',
        width: '100%',
        position: 'relative',
      },
      chartOptions: {
        scales: {
          yAxes: [{
            ticks: {
              beginAtZero: true,
            },
            gridLines: {
              display: true,
            },
          }],
          xAxes: [{
            ticks: {
              beginAtZero: true,
            },
            gridLines: {
              display: false,
            },
          }],
        },
        legend: {
          display: true,
        },
        tooltips: {
          enabled: true,
          mode: 'single',
          callbacks: {
            label(tooltipItems, data) {
              const { datasetIndex, index } = tooltipItems;
              const value = data.datasets[datasetIndex].data[index];
              if (parseInt(value, 10) > 999) {
                return ` ${value.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',')}`;
              }
              return ` ${value}`;
            },
          },
        },
        responsive: true,
        maintainAspectRatio: false,
        height: 300,
      },
    };
  },
};
</script>

<style lang="scss" scoped>

</style>
于 2019-12-17T16:14:25.227 回答