Echarts可视化教程

  1. 网站首页
  2. 百度ECharts
  3. ECharts实例
  4. ECharts入门
  5. 地图大全
  6. ECharts官网

百度Echarts饼图大小设置(附代码)

option = {
  // 其他配置项...
  series: [{
    name: '访问来源',
    type: 'pie',
    radius: ['50%', '70%'], //大小设置
    center: ['50%', '60%'], //位置设置
    data: [
      {value: 335, name: '直接访问'},
      {value: 310, name: '邮件营销'},
      {value: 234, name: '联盟广告'},
      {value: 135, name: '视频广告'},
      {value: 1548, name: '搜索引擎'}
    ],
    label: {
      normal: {
        show: true,
        position: 'center',
        textStyle: {
          fontSize: '20',
          fontWeight: 'bold'
        }
      },
    }
  }]
};
点击展开全文

相关文章

  1. vue3项目中如何搭建Echarts图表
  2. 百度Echarts饼图中间显示文字
  3. 百度echarts公司架构流程图
  4. 百度echarts全国飞行路线图
  5. 百度echarts柱状图动态排名实时变化