@@ -918,7 +918,7 @@ e_radar.echarts4rProxy <- function(
918
918
919
919
serie <- deparse(substitute(serie ))
920
920
921
- e $ chart <- e_radar_(e , serie , max , name , legend , rm_x , rm_y , ... , radar = radar )
921
+ e $ chart <- e_radar_(e $ chart , serie , max , name , legend , rm_x , rm_y , ... , radar = radar )
922
922
return (e )
923
923
}
924
924
@@ -1794,7 +1794,7 @@ e_sunburst.echarts4r <- function(e, styles = NULL, names = NULL, levels = NULL,
1794
1794
# ' @export
1795
1795
# ' @method e_sunburst echarts4rProxy
1796
1796
e_sunburst.echarts4rProxy <- function (e , styles = NULL , names = NULL , levels = NULL , rm_x = TRUE , rm_y = TRUE , ... ) {
1797
- e $ chart <- e_sunburst_(e , styles , names , levels , rm_x , rm_y , ... )
1797
+ e $ chart <- e_sunburst_(e $ chart , styles , names , levels , rm_x , rm_y , ... )
1798
1798
1799
1799
return (e )
1800
1800
}
@@ -1859,7 +1859,7 @@ e_treemap.echarts4r <- function(e, styles = NULL, names = NULL, levels = NULL, r
1859
1859
# ' @export
1860
1860
# ' @method e_treemap echarts4rProxy
1861
1861
e_treemap.echarts4rProxy <- function (e , styles = NULL , names = NULL , levels = NULL , rm_x = TRUE , rm_y = TRUE , ... ) {
1862
- e $ chart <- e_treemap_(e , styles , names , levels , rm_x , rm_y , ... )
1862
+ e $ chart <- e_treemap_(e $ chart , styles , names , levels , rm_x , rm_y , ... )
1863
1863
1864
1864
return (e )
1865
1865
}
@@ -1962,7 +1962,7 @@ e_boxplot.echarts4rProxy <- function(e, serie, name = NULL, outliers = TRUE, ...
1962
1962
name <- deparse(substitute(serie ))
1963
1963
}
1964
1964
1965
- e $ chart <- e_boxplot_(e , deparse(substitute(serie )), name , outliers , ... )
1965
+ e $ chart <- e_boxplot_(e $ chart , deparse(substitute(serie )), name , outliers , ... )
1966
1966
return (e )
1967
1967
}
1968
1968
0 commit comments