taucharts icon indicating copy to clipboard operation
taucharts copied to clipboard

:bar_chart: An R htmlwidget interface to the TauCharts javascript library

Results 23 taucharts issues
Sort by recently updated
recently updated
newest added

Hi Team, I am using the example given in the help section of tau_title() within a rdocument as follows: tauchart(mtcars) %>% tau_point("mpg", "wt") %>% tau_guide_y(auto_scale=FALSE) %>% tau_title("Some Really Good Plot...

After fixing the typo, it passed devtools::check() (I'm hoping to see this package in CRAN some time as its dependancy for a pkg I'm working on)

Happy to help on this one. Do you have a prioritized list of to-dos?

Hi, Just discovered this package. Generally very nice! Question: It seems not possible to show the trend line simultaneously with colored scatter points when each point is its own group....

Hello, I added some code so we can retrieve the value of the legend item after a click event. The Shiny input is the input specified in `tauchart()` with `-legend`...

Is it possible to make the option, optional? No need to change to tao_tooltip though!

enhancement

This is my first attempt with Taucharts and I cannot make a chart display. The code executes without error, but the output is always a blank screen. I've tried viewing...

Is it possible to add vertical lines to a graph? like `geom_vline` in `ggplot2` Right now I have this graph: ``` df1 % group_by(Group) %>% arrange(Timestamp) %>% mutate(count = row_number())...

``` dat1 % filter(vs == 1) dat1 %>% tauchart %>% tau_bar('mpg','cyl','vs') %>% tau_legend() %>% tau_tooltip() %>% tau_color_manual('red') ```