series.negativeColorString
Color to use for bars with negative values.
Applicable only to bar and column series.
Example
<div id="sparkline"></div>
<script>
$("#sparkline").kendoSparkline({
type: "column",
series: [{
data: [10, -5, 8, -12],
negativeColor: "red"
}]
});
</script>
In this article