📅  最后修改于: 2023-12-03 14:43:20.252000             🧑  作者: Mango
jqxBulletChart 是 jQWidgets 中用于绘制子弹图(Bullet Chart)的组件。showTooltip 属性用于设置是否展示鼠标悬停时的提示框。
$('#jqxBulletChart').jqxBulletChart({
showTooltip: value
});
$('#jqxBulletChart').jqxBulletChart({
width: 600,
height: 50,
showTooltip: true,
ranges: [
{ startValue: 0, endValue: 200, color: '#00ff00', opacity: 0.5 },
{ startValue: 201, endValue: 400, color: '#ffff00', opacity: 0.5 },
{ startValue: 401, endValue: 600, color: '#ff0000', opacity: 0.5 }
],
bulletSize: '70%',
pointer: { value: 250, label: 'Revenue 2014 YTD', size: '25%', color: 'black' },
target: { value: 550, label: 'Revenue 2014 YTD Target', size: 4, color: 'black' }
});
在上面的示例中,我们创建了一个子弹图,并且设置 showTooltip 为 true,这样鼠标悬停时会展示提示框。