zoukankan      html  css  js  c++  java
  • echarts 页面对应更改

    ---legrnd

    https://v-charts.js.org/#/histogram

    legend: {
    icon: "circle",
    orient: 'vertical',
    right: 10,
    top: 20,
    bottom: 20,
    data:this.seriesData
    },

    offsetY:'54px',
    metrics: '转化率',
    radius:[30,20],     转移缩小园

    ---title

    title :{
    text: '销售额',
    subtext: '¥'+4444,
    x: 'center',
    y: 'center',
    itemGap: 20,
    textStyle : {
    color : 'rgba(0, 0, 0, 0.427450980392157)',
    fontFamily : '微软雅黑',
    fontSize : 13,
    fontWeight : 'bolder'
    }

    },

    --隐藏   指向标记

    this.chartSettings = {
    label:{
    show:false,
    position:'inner'
    }
    }
     
    隐藏坐标轴折线

    this.extenddata={
    xAxis:{
    show:false,
    },
    yAxis:{
    show:false
    }
    }

    折线变面积  圆滑

    this.dataSet={
    labelMap: {
    'groupCount': '',
    },
    area:true,
       smooth:true,
    // itemStyle: {normal: {areaStyle: {type: 'default'}}},
    }
     
     

     ----https://echarts.baidu.com/echarts2/doc/example/pie6.html

    ----https://echarts.baidu.com/examples/editor.html?c=pie-legend

  • 相关阅读:
    基于jenkins+gitlab的自动集成环境的搭建
    函数指针与委托
    详解C#break ,continue, return (转)
    REST 与 web service 的比较
    Python
    python
    python
    python
    python 1.0
    python 0.0
  • 原文地址:https://www.cnblogs.com/Quxiya/p/10531367.html
Copyright © 2011-2022 走看看