title配置项主要是对图表的标题进行配置
title: { ...... }
设置标题 副标题
text: '简单创建柱形图',//图表标题 subtext: '副标题',
如果想对副标题设置 超链接 边框 颜色 宽度…等 比如:设置超链接 sublink:‘…’,
设置标题位置
表示标题在图表上面,居中
top: 'top', //顶部 相当于X left: 'center',//居中 相当于Y
textStyle 设置标题文字颜色 大小等
title:{ text:'标题', textStyle: { color: 'red',//文字颜色 fontSize: '50'//文字大小 }, subtextStyle: {//设置副标题 color: 'blue' } }
设置标题超链接
设置标题超链接 点击即可跳转
link: 'http://www.baidu.com', //默认新页面打开 target:'self' //当前页面打开
设置标题背景颜色 边框宽度 边框颜色
backgroundColor: 'red' //设置背景颜色 borderWidth: '2', //设置标题边框宽度 borderColor: 'bule' //设置边框为蓝色