Permalink
Browse files

update readme

  • Loading branch information...
1 parent 0eb3564 commit 8735ec533d66b495a5d0f95422193ac1e8bfdccf @reinholdsson reinholdsson committed Jun 22, 2013
Showing with 7 additions and 2 deletions.
  1. +7 −2 README.md
  2. BIN screenshots/highcharts.png
View
@@ -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
```
View
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 8735ec5

Please sign in to comment.