JohnCoene / echarts4r

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

How to change color, border, border-width? #463

Closed ravinder387 closed 2 years ago

ravinder387 commented 2 years ago

df |> e_chart() |> e_histogram(Age)

helgasoft commented 2 years ago

It's all in the ECharts documentation

mtcars |>
    e_charts() |>
    e_histogram(mpg, name = "histogram", colorBy='data', itemStyle= list(borderWidth=3, borderColor='red'))

image

ravinder387 commented 2 years ago

thnks