Skip to content

Latest commit

 

History

History
32 lines (27 loc) · 832 Bytes

create-plugin.md

File metadata and controls

32 lines (27 loc) · 832 Bytes

Creating a plugin

A plugin is a function, which returns an object, that can handle chart events, place content into chart panels or execute chart methods.

(function () {
  function ExtraPlugin(settings) {
    return {
        init: function (chart) {},
        destroy: function () {},
        onSpecReady: function () {},
        onRender: function () {}
        ...
    }
  };
  tauCharts.api.plugins.add('extra', ExtraPlugin);
})();

var chart = new tauCharts.Chart({
    ...
    plugins: [
        tauCharts.api.plugins.get('extra')({...})
    ]
});

Examples

  • Plugin, which puts custom control into chart's panel and executes chart's methods: Example

  • Plugin, which draws points over existing chart using filtered data Example