我正在使用d3,moment.js和calheatmap,我正在尝试在日历可视化中选择一个月内最早的日期。以下是日历的设置方式
cal = new CalHeatMap();
cal.init({
data: data,
start: moment("2012-1-1", "YYYY-M-D").utc().toDate(),
domain: "month",
subDomain: "day",
legend: quantScale.quantiles(),
range: 24,
cellRadius: 0,
itemName : metric.value.labels,
legendVerticalPosition: "top",
legendMargin: [0, 0, 20, 0],
legendCellSize: 15
});
我一直在尝试使用moment.min来选择月份中的最低值,但这似乎不起作用。有没有人对我如何做到这一点有任何建议?
我在这个JavaScript领域很新,所以非常感谢任何帮助!