JohnCoene / echarts4r

🐳 ECharts 5 for R
http://echarts4r.john-coene.com/
Other
585 stars 82 forks source link

e_bar chart combine with e_pie chart #603

Closed pizifan closed 6 months ago

pizifan commented 6 months ago

I am experimenting with e_bar and e_pie in one chart, like the demo shows: https://echarts.apache.org/examples/en/editor.html?c=mix-timeline-finance. But the result is empty。

DF<- data.frame(year=c(2021,2021,2022,2022,2023,2023), type=c('1','2','1','2','1','2'), value=c(100,200,200,150,180,200))%>% group_by(year)

DF%>% e_charts(type,timeline = T)%>% e_bar(value)%>% e_data(DF,type)%>% e_pie(value,'test',center=list('75%', '35%'), radius='28%')

How can i set to get the correct result? thank you very much!

rdatasculptor commented 6 months ago

As far as I can see this is currently not possible with echarts4r. But it would really be a very nice feature. In my imagination I am thinking of complete dashboards with all kinds of charts put together this way. Maybe a nice puzzle for you @munoztd0 :)

JohnCoene commented 6 months ago

It's technically possible but it's a pain to configure, see this

Generally I just find arranging using CSS/JavaScript much easier

rdatasculptor commented 6 months ago

Thanks @JohnCoene , I forgot about that example