如何使角度为6的气泡图chart.js中的点从另一点拖动。 我已经尝试过
onClick: function(e) {
// The annotation is is bound to the `this` variable
console.log("Annotation", e.type, this);
},
draggable: true,
onDrag: function(event) {
console.log(event.subject.config.value);
}
},