echart水球图修改value的font font-family
时间: 2023-07-29 13:12:08 浏览: 219
要修改水球图的值的字体和字体族(font family),可以使用Echarts提供的textStyle属性。具体操作如下:
1. 找到需要修改的数据项,例如:
```javascript
{
name: '完成率',
type: 'liquidFill',
data: [0.6, 0.5, 0.4],
// 其他属性
}
```
2. 在该数据项中添加textStyle属性,并在其中设置font和fontFamily属性,例如:
```javascript
{
name: '完成率',
type: 'liquidFill',
data: [0.6, 0.5, 0.4],
// textStyle属性
textStyle: {
fontSize: 20, // 字体大小
fontFamily: 'Arial', // 字体族
}
}
```
这样就可以将水球图中的值的字体修改为20号Arial字体了。你可以根据自己的需求修改fontSize和fontFamily的值。
相关问题
echart水球图的value的百分比修改成常数
要将 ECharts 水球图的 value 修改为常数,可以通过设置 `formatter` 属性来实现。例如,将 value 修改为 75:
```js
option = {
series: [
{
type: 'liquidFill',
data: [0.6, 0.5, 0.4, 0.3],
// 将 value 设置为 75
label: {
formatter: () => '75',
textStyle: {
fontSize: 60
}
}
}
]
};
```
上述代码中,通过设置 `formatter` 属性将 label 显示的内容设置为常数 75。需要注意的是,此时仍然需要设置 `data` 属性的值,因为它控制着水球的高度。
echart 水球图
以下是使用ECharts绘制水球图的示例代码:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ECharts 水球图示例</title>
<!-- 引入 ECharts 文件 -->
<script src="https://cdn.jsdelivr.net/npm/echarts/dist/echarts.min.js"></script>
</head>
<body>
<!-- 为 ECharts 准备一个具备大小(宽高)的 DOM -->
<div id="main" style="width: 600px;height:400px;"></div>
<script type="text/javascript">
// 基于准备好的dom,初始化echarts实例
var myChart = echarts.init(document.getElementById('main'));
// 指定图表的配置项和数据
var option = {
series: [{
type: 'liquidFill',
data: [0.6, 0.5, 0.4, 0.3],
radius: '70%',
label: {
normal: {
formatter: '{a|{a}}{abg|}\n{hr|}\n {b|{b}:}{c}%',
backgroundColor: '#eee',
borderColor: '#aaa',
borderWidth: 1,
borderRadius: 4,
shadowBlur:3,
shadowOffsetX: 2,
shadowOffsetY: 2,
shadowColor: '#999',
padding: [0, 7],
rich: {
a: {
color: '#999',
lineHeight: 22,
align: 'center'
},
hr: {
borderColor: '#aaa',
width: '100%',
borderWidth: 0.5,
height: 0
},
b: {
color: '#333',
fontSize: 16,
fontWeight: 'bold',
lineHeight: 33
},
per: {
color: '#eee',
backgroundColor: '#334455',
padding: [2, 4],
borderRadius: 2
}
}
}
},
backgroundStyle: {
color: 'rgba(220, 220, 220, 0.8)'
},
itemStyle: {
normal: {
opacity: 0.6,
shadowBlur: 10,
shadowColor: 'rgba(0, 0, 0, 0.3)'
}
}
}]
};
// 使用刚指定的配置项和数据显示图表。
myChart.setOption(option);
</script>
</body>
</html>
```
以上代码会生成一个宽为600px,高为400px的水球图,其中data数组中的四个元素分别表示四个水球的填充百分比。你可以根据自己的需求修改这些参数。
阅读全文