chartjs icon indicating copy to clipboard operation
chartjs copied to clipboard

An implementation of the Chart.js library in R

Results 8 chartjs issues
Sort by recently updated
recently updated
newest added

Is it possible to change the color of the background grid lines? As I attempt to open the Chart.js documentation link specified below, I get redirected to what seems to...

Hi, I want to use your chartjs package in a flexdashboard but no interactive chart when I test your code Do you know why ? Thanks a lot Mimeides ---...

Is it possible to include text in the tooltips and label de axis?

Nice R implementation! The stuff really works well once you find out how to use. The information on your website is misleading: http://tutuchan.github.io/chartjs/ Them charts examples throw errors because width...

``` r chartjs(height = "200px") %>% cjsLine(labels = seq.Date(as.Date("2011-01-01"), as.Date("2011-01-08"), by = 1)) %>% cjsEditScale("x", 1, type = "time") %>% cjsEditScale("y", 1, type = "logarithmic") %>% cjsSeries(data = abs(c(rnorm(8))), label...

Right now, using custom colours is a pain because you have to specify all the colors for each series. Could add the possibility of using other RColorBrewer palettes or just...

As evidenced by @ThoDuyNguyen in #8, Polar area charts make the page crash when they are drawn in a flexdashboard or in a plain tab. It seems the widget's height...

HI, I am attempting to plot some charts in chart.js using this package in R for a shiny app. My goal is to plot the chart then add an image...