AmCharts에서 만든 자동차 속도계를 사용하여 다양한 속도(숫자)를 설정하여 속도계 포인터를 동적으로 변경하는 방법
렌더링:
자바스크립트 코드:
var chart = AmCharts.makeChart("chartdiv", { "type": "gauge", "theme": "none", "axes": [{ "axisThickness": 1, "axisAlpha": 0.2, "tickAlpha": 0.2, "valueInterval": 20, "bands": [{ "color": "#84b761", "endValue": 90, "startValue": 0 }, { "color": "#fdd400", "endValue": 130, "startValue": 90 }, { "color": "#cc4748", "endValue": 220, "innerRadius": "95%", "startValue": 130 }], "bottomText": "0 km/h", "bottomTextYOffset": -20, "endValue": 320 }], "arrows": [{}] }); window.onload=function(){ chart.arrows[0].setValue(80); chart.axes[0].setBottomText(80 " km/h"); } document.getElementById("btnSure").onclick=function(){ if(document.getElementById("txtNum").value>320){ alert("超出最大值"); return; } if(document.getElementById("txtNum").value<0){ alert("不能低于0"); return; } chart.arrows[0].setValue(document.getElementById("txtNum").value); chart.axes[0].setBottomText(document.getElementById("txtNum").value " km/h"); }
JS 소개:
<script type="text/javascript" src="amcharts.js"></script> <script type="text/javascript" src="gauge.js"></script> <script type="text/javascript" src="none.js"></script>
위 내용은 이 글의 전체 내용입니다. 모두 마음에 드셨으면 좋겠습니다.