我正在使用Omnipotent的jQuery Sparkline图,想知道是否有任何方法可以反转图形?
$(".sparkline").sparkline("html", {
height: "1.5em",
width: "8em",
lineColor: '#23c6c8',
fillColor: '#23c6c85e',
minSpotColor: !1,
maxSpotColor: !1,
spotColor: '#f0f0f0',
spotRadius: 3,
tooltipFormat: '@{{offset:offset}} @{{value}}',
tooltipValueLookups: {
'offset': {!! json_encode($dateArray) !!}
},
});
目前提供的数字越高,图表点越高,我希望它是相反的。
答案 0 :(得分:0)
我设法通过扭转图表并使用格式化程序取消工具提示来解决这个问题。
将所有内容乘以-1并添加到迷你图表中 补充一点:
tooltipFormatter: function(sparkline, options, point) {
return Math.abs(point.y)+'º '+Math.abs(options.userOptions.tooltipValueLookups.points.map[point.y]) + ' pts.';
},
返回XºZ点的选项。 (在我的情况下就是这样做了。)