I have two sparkline charts.
A is using dataSource, B is using data.
How do I set the line width of B? (line width in A work fine).
Sparkline A
$(".item-dev-chart", sparkline).kendoSparkline({ theme: "bootstrap", dataSource: itemDevDs, series: [{ type: "line", field: "p", width: 2 }], tooltip: { visible: false }});Sparkline B:
$t.kendoSparkline({ theme: "bootstrap", data:$t.data("source").split(','), type: "line", chartArea: { background: "#f5f5f5" }, tooltip: { visible: false }});Copying series options from A to B causes B to not show at all.