I need help creating a Dygraph chart that is not interactive (no zoom, no movement) but still clickable.
I know how to disable all interaction callbacks using something like
interactionModel: {}
or
interactionModel: {
<event>: function (event, g, context) {Dygraph.cancelEvent(event);}
}
However, the click callback function prototype is different and looks like this:
clickCallback: function(e, x, points) { <my code> }
Is there a way to achieve this?