Skip to content

Instantly share code, notes, and snippets.

@amadeus
Created October 14, 2013 22:05
Show Gist options
  • Select an option

  • Save amadeus/6983018 to your computer and use it in GitHub Desktop.

Select an option

Save amadeus/6983018 to your computer and use it in GitHub Desktop.
var Settings = Class.$extend({
chart: {
type: 'spline'
},
title: {
text: null
},
xAxis: {
title: {
text: "Time (sec)",
}
},
yAxis: {
title: {
text: 'Convergence %'
},
min: 0.0,
max: 100.0
},
tooltip: {
formatter: function() {
return '<b>'+ (Math.round(this.y*1000.0)/1000.0) +'%</b><br/>'
}
},
legend: {
enabled: false
},
series: [{
name: 'Convergence Rate',
data: []
}]
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment