drawLine () {
window.addEventListener('resize', this.drawLine)
let myChart = this.$echarts.init(this.$refs.echarts)
...
yekong
3年前 (2021-10-02)
喜欢
axisLabel: {
show: true,
interval: 0,
color: ['#fff&...
yekong
3年前 (2021-09-27)
喜欢
legend: {
show: true, //是否显示
type: "plain", // 图例的类型 'plain':普通图例 'scroll':可滚动翻页的图例
...
yekong
3年前 (2021-09-24)
喜欢
折线图距离两侧会有空白,想要将空白去除
通过boundaryGap控制
类目轴中boundaryGap可以配置为true和false。默认为true
将boundaryGap:设为 false就可以实现两侧空白去除
drawLine () {
window.add...
yekong
3年前 (2021-09-20)
喜欢
使用color: 'auto'来实现文字和指针颜色一致。
getecharts4: function () {
window.addEventListener('resize', this.getechar...
yekong
3年前 (2021-09-18)
喜欢
重要参数 inverse
inverse: true
drawLine() {
window.addEventListener("resize", this.drawLine);
let myChart = this.$ec...
yekong
3年前 (2021-09-13)
喜欢
itemStyle : {
normal : {
label : {
show : false
},
labelLine : {
...
yekong
3年前 (2021-09-13)
喜欢
"label": {
"normal": {
formatter: function(params) {
...
yekong
3年前 (2021-09-12)
喜欢
wave.ensureState is not a function
使用echarts水球图的时候
版本不匹配会报这个错误
我用的版本是这种
“echarts”: “^4.9.0”,
“echarts-liquidfill”: “^2.0.6”
...
yekong
3年前 (2021-09-12)
喜欢
drawLine() {
var that = this;
window.addEventListener("resize", this.drawLine);
let myChart = this.$echarts...
yekong
3年前 (2021-09-12)
喜欢