nuke-biz-custom-chart
Version:
custom-chart
21 lines (14 loc) • 478 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
var Point = function Point() {
_classCallCheck(this, Point);
};
Point.draw = function (chart, props) {
var position = props.position;
chart.point().position(position);
};
exports.default = Point;
module.exports = exports["default"];