Echarts可视化教程

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

百度echarts图表如何设置主标题和副标题

title: [
 {
  text: "主标题",
  left: '20%', //主标题位置
  top: '40%',
  textStyle: {
   color: "#f00",
   fontSize: 32,
   fontWeight: 'bold'
  }
 },
{
 subtext: "副标题",
 itemGap: 12, //主副标题间距
 left: '20%', //副标题位置
 top: '50%',
 subtextStyle: {
    color: "#000",
    fontSize: 18,
    fontWeight: '500'
  }
 }
],
点击展开全文

相关文章

  1. ECharts水球图图表展示数据占比和目标完成情况
  2. 百度Echarts图表之柱状图+折线图组合系列
  3. 百度Echarts图表之自定义系列
  4. 百度Echarts图表系列之K线股票图表
  5. 百度Echarts事件处理方法介绍