Skip to content

e_parallel and additional arguments not passed to Echarts API? #223

Description

@michaelbgarcia

Hi John, thank you for the wonderful package! I recently created a parallel graph and tried to format the lines. I noticed in the source code for echarts4r:::e_parallel.echarts4r that ... is passed to dplyr::select(...), even though the help documentation says otherwise (https://echarts4r.john-coene.com/reference/e_parallel.html):

function (e, ..., name = NULL, rm_x = TRUE, rm_y = TRUE) 
{
    e <- .rm_axis(e, rm_x, "x")
    e <- .rm_axis(e, rm_y, "y")
    df <- e$x$data[[1]] %>% dplyr::select(...)
    

I imagine this was by design to simplify creating a parallel chart, but it was an expected behavior after using e_scatter, e_bar and the like.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions