Skip to content

Instantly share code, notes, and snippets.

@reu
Created February 24, 2012 13:06
Show Gist options
  • Save reu/1900807 to your computer and use it in GitHub Desktop.
Save reu/1900807 to your computer and use it in GitHub Desktop.
Highchart bonitinho
$(document).ready(function() {
Highcharts.setOptions({
colors: ["#259E01", "#058DC7", "#7F8DA9", "#ADD981", "#DAF0FD", "#CD0D74"],
chart: {
borderWidth: 0,
marginTop: 50,
plotBackgroundColor: 'rgba(255, 255, 255, .9)',
plotShadow: false,
plotBorderWidth: 0,
marginLeft: 50,
style: {
fontSize: '11px'
}
},
credits: {
enabled: false
},
legend: {
borderWidth: 0
},
title: {
text: null
},
tooltip: {
borderWidth: 1,
borderRadius: 3,
borderColor: "#E6E6E6"
},
xAxis: {
gridLineColor: "#E6E6E6",
gridLineWidth: 1
},
yAxis: {
gridLineColor: "#E6E6E6"
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment