theme String

The chart theme. This can be either a built-in theme or "sass". When set to "sass" the chart will read the variables from the Sass-based themes. More information on the built-in themes could be found in the Less-based themes article.

The supported values are:

  • "sass" - special value, see notes
  • "black"
  • "blueopal"
  • "bootstrap"
  • "default"
  • "fiori"
  • "flat"
  • "highcontrast"
  • "material"
  • "materialblack"
  • "metro"
  • "metroblack"
  • "moonlight"
  • "nova"
  • "office365"
  • "silver"
  • "uniform"

Example

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  theme: "black",
  series: [
    { data: [1, 2] }
  ]
});
</script>
In this article