dash_styles 在 Highcharts 中
dash_styles in Highcharts
我正在尝试更改 Highcharts 中折线图的 dashStyle。
我参考了 RDocumentation ,第 7 页,没有任何地方的例子。它只说使用 dash_styles()
然后我检查了 here 并尝试了,但没有得到我需要的结果。
library(highcharter)
highchart() %>%
hc_title(text = title) %>%
hc_xAxis(categories = batchno) %>%
hc_add_series(name = "Mixer A", data = A,
color = "hotpink", pointWidth = 20, type = "line",
dash_styles(style = "LongDot")) %>%
hc_add_series(name = "Mixer B" , data = B,
color = "slateblue", pointWidth = 20,type = "line") %>%
hc_chart(type = "column") %>%
hc_yAxis(
list(lineWidth = 3, lineColor='seashell', title=list(text= "text"),max= 10)) %>% hc_tooltip(crosshairs = TRUE, shared = TRUE)
}
我如何使用这个 dash_style?
dash_styles
只是一个辅助函数,显示您可以使用的破折号类型。
勾选this example。你会看到你只需要给出破折号类型的名称:
highchart() %>%
hc_add_series(data = rnorm(5), dashStyle = "longdash") %>%
hc_add_series(data = rnorm(5), dashStyle = "DashDot")
我正在尝试更改 Highcharts 中折线图的 dashStyle。
我参考了 RDocumentation ,第 7 页,没有任何地方的例子。它只说使用 dash_styles()
然后我检查了 here 并尝试了,但没有得到我需要的结果。
library(highcharter)
highchart() %>%
hc_title(text = title) %>%
hc_xAxis(categories = batchno) %>%
hc_add_series(name = "Mixer A", data = A,
color = "hotpink", pointWidth = 20, type = "line",
dash_styles(style = "LongDot")) %>%
hc_add_series(name = "Mixer B" , data = B,
color = "slateblue", pointWidth = 20,type = "line") %>%
hc_chart(type = "column") %>%
hc_yAxis(
list(lineWidth = 3, lineColor='seashell', title=list(text= "text"),max= 10)) %>% hc_tooltip(crosshairs = TRUE, shared = TRUE)
}
我如何使用这个 dash_style?
dash_styles
只是一个辅助函数,显示您可以使用的破折号类型。
勾选this example。你会看到你只需要给出破折号类型的名称:
highchart() %>%
hc_add_series(data = rnorm(5), dashStyle = "longdash") %>%
hc_add_series(data = rnorm(5), dashStyle = "DashDot")