Created
November 22, 2016 07:35
-
-
Save lohithgn/d025bc2f33ce2eee07ef6b7c37f2e883 to your computer and use it in GitHub Desktop.
Kendo UI Chart - custom series colors
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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