vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
407 B

'use strict';
import ShapeBase from '../util/ShapeBase'
class Dot extends ShapeBase {
constructor(options, body, labelModule) {
super(options, body, labelModule)
}
draw(ctx, x, y, selected, hover, values) {
this._drawShape(ctx, 'circle', 2, x, y, selected, hover, values);
}
distanceToBorder(ctx, angle) {
this.resize(ctx);
return this.options.size;
}
}
export default Dot;