我正在使用融合图库。因此,我在报告中使用了角规图表。我遇到拨号问题,该问题由融合图库根据传递给它的拨号值自动设置。
将最小值和最大值分成4个相等的部分并显示。我想覆盖它。我想显示我们给定的每个部分的最大值。
电流输出
预期产量:
我的代码在这里:
var bw1 = parseInt($('.ideal_weight_graph').data('ideal1'));//46
var bw2 = parseInt($('.ideal_weight_graph').data('ideal2'));//62
var bw = parseInt($('.ideal_weight_graph').data('weight'));//53
var bw3 = bw2 + bw1;
var fusioncharts = new FusionCharts({
type : 'angulargauge',
renderAt : 'ideal_weight_graph',
width : '400',
height : '250',
dataFormat : 'json',
dataSource : {
"chart" : {
"caption" : "Your weight for your gender and age",
"lowerLimit" : 0,
"upperLimit" : bw3,
"lowerLimitDisplay" : "Under weight",
"middleLimitDisplay" : "Normal weight",
"upperLimitDisplay" : "Over weight",
"showValue" : "1",
"valueBelowPivot" : "1",
"theme" : "fint",
showGaugeBorder : "1"
},
"colorRange" : {
"color" : [{
"minValue" : 0,
"maxValue" : bw1,
"code" : "#e44a00"
}, {
"minValue" : bw1,
"maxValue" : bw2,
"code" : "#00CC00"
}, {
"minValue" : bw2,
"maxValue" : bw3,
"code" : "#f8bd19"
}]
},
"dials" : {
"dial" : [{
"value" : bw
}]
}
}
});
fusioncharts.render();
最佳答案
@Shanthi您可以使用FusionCharts角规的“趋势点”功能满足您的要求。
Here是满足您需求的工作示例。
<!-- A simple angular gauge showing customer satisfaction index for Harry's Supermart.
Elements :
1. Color Range (Radial scale)
2. Dials (Data Value Indicators)
3. Tick Marks & Values
4. Tooltip
5. Trend points, trend arcs & trend markers
6. Annotations
-->
<div id="chart-container">FusionCharts will render here</div>
如果您还有其他疑问,请告诉我。