Skip to content

Instantly share code, notes, and snippets.

@goofmint
Created October 13, 2016 06:02
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 goofmint/9a6144c258056f2e33b7a91c9a84a261 to your computer and use it in GitHub Desktop.
Save goofmint/9a6144c258056f2e33b7a91c9a84a261 to your computer and use it in GitHub Desktop.
5.md
_createNewSeries: function(color, fillcolor, vibration) {
var data = createChartDummyData(400, vibration); // ダミーデータを生成
// 系列定義
return {
name: 'series_'+color,
type: 'stacked_line',
data: data,
propNames: {
y: 'val'
},
fillColor: fillcolor,
color: color
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment