我正在使用此代码使用 JustGage 制作量具:
drawGage() {
var g1 = new JustGage({
id: "gage1",
value: 90,
min: 0,
max: 100,
levelColors: ["blue"],
gaugeWidthScale: 0.9,
startAnimationTime: 2700,
startAnimationType: "bounce",
});
}
我的 index.html 中有这些脚本可以正确加载:
<script type="text/javascript" src="/assets/js/raphael-2.1.4.min.js"></script>
<script type="text/javascript" src="/assets/js/justgage.js"></script>
我在我的 html 中有这个 div,它被附加到:
<div id="gage1"></div>
这个图像是我在尝试了很多不同的东西之后一遍又一遍地得到的:
当我检查 SVG 时,它看起来好像由于某种原因被设置为,不知道为什么会这样,或者如果这是什至我的问题。stroke
path
none
任何帮助表示赞赏。