我正在使用cal-heatmap显示一个月的用户活动。我的问题是颜色变化没有正确显示。我的“init”功能如下所示。
当我提供具有2或3的差值的整数值的数据时(例如:8,12,3,7等[请注意我将数据作为JSON]),我看不出任何显着差异块的颜色(屏幕截图添加在http://i.stack.imgur.com/xspWR.jpg中 - 顶部给出的数字表示与该单元格对应的数据)。
init({
start: new Date(newDate.getFullYear(), month, 1),
cellRadius: 35,
cellSize: 58,
itemSelector: "#heatmap_busiestDays",
domain: "month", //hour|day|week|month|year
subDomain: "x_day",
subDomainTextFormat: "%b %d",
range: 1,
domainGutter: 10,
previousSelector: "#cal-heatmap-previous",
nextSelector: "#cal-heatmap-next",
displayLegend: false,
data: busiestDayHeatMap,
legendColors: {
min: "#A2F37B",
max: "#26911F",
empty: "white"
}
});
我在设置中遗漏了什么吗?任何帮助将不胜感激。提前谢谢。