diff --git a/README.md b/README.md index 7da5738..ee830ec 100644 --- a/README.md +++ b/README.md @@ -117,8 +117,13 @@ There is your xChart #### [HighCharts](http://www.highcharts.com/) ```coffee -h1 <- hPlot(x = "Wr.Hnd", y = "NW.Hnd", data = MASS::survey, - type = c("line", "bubble", "scatter"), group = "Clap", size = "Age") +h1 <- Highcharts$new() +h1$chart(type = "spline") +h1$series(list( + list(data = c(1, 3, 2, 4, 5, 4, 6, 2, 3, 5, NA), dashStyle = "longdash"), + list(data = c(NA, 4, 1, 3, 4, 2, 9, 1, 2, 3, 4), dashStyle = "shortdot") +)) +h1$legend(symbolWidth = 80) h1 ``` diff --git a/screenshots/highcharts.png b/screenshots/highcharts.png index e031b13..42f888f 100644 Binary files a/screenshots/highcharts.png and b/screenshots/highcharts.png differ