我已經使用下面的代碼實現了Morris Line Chart
,這很好。從Y軸Morris折線圖中刪除點
但我需要在目標的第二行名稱中進行一些修改。你每個月都看到點。我想從這條線上刪除這些點,這樣我就會成爲一條直線。
Morris.Line({
element: 'line-chart',
data: JSON.parse(GraphData),
xkey: 'title',
ykeys: ['goal', 'actual'],
labels: ['Goal', 'Actual'],
xLabelFormat: function(x) { // <--- x.getMonth() returns valid index
var month = months[x.getMonth()];
return month;
},
dateFormat: function(x) {
var month = months[new Date(x).getMonth()];
return month;
},
resize: true,
lineColors: ['#ecb201', '#1B17BB'],
gridTextFamily: "'Nunito', sans-serif",
gridTextWeight: '300',
gridTextSize: 11,
gridTextColor: '#090b0d',
pointSize: 4,
lineWidth: 2,
pointStrokeColors: ['#ffffff', '#ffffff'],
});
我不認爲這樣的參數是可以滿足您的要求,我想你可以使用CSS技巧 –
哪些CSS技巧可以請你解釋?? –
我在努力,,,,等一會兒,如果我會成功,一定會更新你 –