Build 'parallelAxis' for a parallel chart
Arguments
- dfwt
An echarty widget OR a data.frame(regular or grouped)
- cols
A string vector with columns names in desired order
- minmax
Boolean to add max/min limits or not, default TRUE
- ...
Additional attributes for parallelAxis.
Value
A list, see format in parallelAxis.
Examples
iris |> dplyr::group_by(Species) |> # chained
ec.init(series.param= list(type= 'parallel', lineStyle= list(width=3))) |>
ec.paxis(cols= c('Petal.Length','Petal.Width','Sepal.Width'))
mtcars |> ec.init(
parallelAxis= ec.paxis(mtcars, cols= c('gear','cyl','hp','carb'), nameRotate= 45),
series.param= list(type= 'parallel', smooth= TRUE)
)
