plotters_canvas/
lib.rs

1/*!
2   The Plotters HTML5 Canvas backend.
3
4   This backend allows Plotters operates the HTML5 Canvas when targeted to Webassembly.
5
6   See the documentation for [CanvasBackend](struct.CanvasBackend.html) for more details.
7*/
8mod canvas;
9
10pub use canvas::CanvasBackend;