Skip to content

Commit faaf4da

Browse files
author
Toby Dylan Hocking
committed
Merge pull request #163 from ropensci/toby-fixes
Fixes for error bars and ticks
2 parents 1d75115 + 3337d85 commit faaf4da

15 files changed

+999
-250
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: plotly
22
Type: Package
33
Title: Interactive, publication-quality graphs online.
4-
Version: 0.5.20
4+
Version: 0.5.21
55
Authors@R: c(person("Chris", "Parmer", role = c("aut", "cre"),
66
email = "[email protected]"),
77
person("Scott", "Chamberlain", role = "aut",

NEWS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
0.5.21 -- 23 February 2015.
2+
3+
Fixes for error bars and tick marks.
4+
15
0.5.20 -- 9 February 2015.
26

37
Add alpha transparency to fill conversion.

R/corresp_one_one.R

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,12 @@ coded.lty <- c("22"="dash",
8181
"224282F2"="dash",
8282
"F1"="dash")
8383

84+
# Convert R lty line type codes to plotly "dash" codes.
85+
lty2dash <- c(numeric.lty, named.lty, coded.lty)
86+
8487
# Convert ggplot2 aes to line parameters.
8588
aes2line <- c(linetype="dash",
8689
colour="color",
8790
size="width",
8891
direction="shape")
92+

0 commit comments

Comments
 (0)