Skip to content

Instantly share code, notes, and snippets.

@goofmint
Created October 13, 2016 07:55
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/ab74e1dab51904752ccfa5d55087fe38 to your computer and use it in GitHub Desktop.
Save goofmint/ab74e1dab51904752ccfa5d55087fe38 to your computer and use it in GitHub Desktop.
7.md
"#expand click": function() {
this._setChartSetting(this._width *= 2, this._height *= 2);
},
"#shrink click": function() {
this._setChartSetting(this._width /= 2, this._height /= 2);
},
_setChartSetting: function(width, height) {
this._chartController.setChartSetting({
width: width,
height: height
});
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment