I'm using a KendoUI area chart to show impressions. The category axis contains 3 date values, 6/1, 6/15, and 6/30. I'd like to show the date associated with the category point in the tooltip, but I'd can't figure out how to do it without listing all of the dates in the category axis.
$("#campaignImpressions").kendoChart({
theme: $(document).data("kendoSkin") || "default",
legend: { position: "bottom" },
chartArea: { background: "", width: 800, height: 250 },
series: [{ type: "area",
markers:{ visible: true, background:"", opacity:1, size:5, type:"circle" },
data: [ 5321562, 3252364, 3643643, 5345245, 4623462, 5321562, 3252346, 4643643, 5345245, 4623462,
5321562, 3252364, 5643643, 5345245, 4623462, 5321562, 3252364, 6643643, 5345245, 4623462,
5321562, 3252364, 7643643, 5345245, 4623462, 5321562, 3252364, 4643643, 5345245, 4623462 ],
name: "Total Impressions", color: "#57c2f2", axis: "size", opacity: .5 }],
valueAxis: [{ name: "pvs", visible:false, color: "#4e4141"
},{
name: "size", visible:false, color: "#ec5e0a",
line: { width: 0 }
}],
categoryAxis: {
categories: ["6/1", "", "", "", "", "", "", "", "", "", "", "", "", "","6/15", "", "", "", "", "", "", "", "", "", "", "", "", "", "","6/30"],
majorGridLines: { visible: false }
},
tooltip: { visible: true, template: "#= category # <br /> #= kendo.format('{0:N0}',value) #" }
});
Is it possible to add a hidden array dates and use that in my tooltip template format, so I don't have to show a jumble of dates at the bottom?
I still need to show the 3 dates, so that it's evident the user is looking at impressions over a one-month time period.