Skip to content

Instantly share code, notes, and snippets.

@lohithgn
Created November 22, 2016 07:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lohithgn/d025bc2f33ce2eee07ef6b7c37f2e883 to your computer and use it in GitHub Desktop.
Save lohithgn/d025bc2f33ce2eee07ef6b7c37f2e883 to your computer and use it in GitHub Desktop.
Kendo UI Chart - custom series colors
<script>
function createChart() {
$("#chart").kendoChart({
title: {
text: "Gross domestic product growth \n (GDP annual %)"
},
seriesColors:['#b71c1c','#1a237e','#004d40'],
//ommitted for brevity...
});
}
$(document).ready(createChart);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment