toolbox! provides interactive functionality in the style of many popular analytics dashboards. toolbox! options allow for users to access raw data, change between compatible graph types (flip between bar and line, etc.) and provides a means for downloading static PNG images.

Method Signatures

toolbox!(ec::EChart)

Optional Arguments

show::Bool = true
restore::Bool = true
dataView::Bool = true
saveAsImage::Bool = true
chartTypes::AbstractVector = []

Examples

using ECharts
x = 1:20
y = 3 .+ 5x
a = bar(x, y)
toolbox!(a, chartTypes = ["bar", "line"])