📅  最后修改于: 2023-12-03 14:43:20.065000             🧑  作者: Mango
jQWidgets jqxBarGauge 是一个用 jQuery 和 jQWidgets 实现的条形仪表盘控件。其中,BackgroundColor 属性用于设置条形图形的背景颜色。
$("#jqxBarGauge").jqxBarGauge({
backgroundColor: "#fff"
});
| 参数名称 | 参数类型 | 参数描述 | | --- | --- | --- | | backgroundColor | string | 设置条形图形的背景颜色。可以填写颜色名称、HEX 值或 RGB 值。默认为 "#FFFFFF"(白色)。 |
$("#jqxBarGauge").jqxBarGauge({
backgroundColor: "#e6e6e6"
});