apexcharter/search.json

2 lines
941 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[{"path":"https://dreamrs.github.io/apexcharter/LICENSE.html","id":null,"dir":"","previous_headings":"","what":"MIT License","title":"MIT License","text":"Copyright (c) 2020 Victor Perrier Permission hereby granted, free charge, person obtaining copy software associated documentation files (“Software”), deal Software without restriction, including without limitation rights use, copy, modify, merge, publish, distribute, sublicense, /sell copies Software, permit persons Software furnished , subject following conditions: copyright notice permission notice shall included copies substantial portions Software. SOFTWARE PROVIDED “”, WITHOUT WARRANTY KIND, EXPRESS IMPLIED, INCLUDING LIMITED WARRANTIES MERCHANTABILITY, FITNESS PARTICULAR PURPOSE NONINFRINGEMENT. EVENT SHALL AUTHORS COPYRIGHT HOLDERS LIABLE CLAIM, DAMAGES LIABILITY, WHETHER ACTION CONTRACT, TORT OTHERWISE, ARISING , CONNECTION SOFTWARE USE DEALINGS SOFTWARE.","code":""},{"path":"https://dreamrs.github.io/apexcharter/articles/apexcharter.html","id":"bar-charts","dir":"Articles","previous_headings":"","what":"Bar charts","title":"Starting with ApexCharts","text":"Simple bar charts can created : Flipping coordinates can done using type = \"bar\": create dodge bar charts, use aesthetic fill : stacked bar charts, specify option stacked ax_chart :","code":"data(\"mpg\") apex(data = mpg, type = \"column\", mapping = aes(x = manufacturer)) apex(data = mpg, type = \"bar\", mapping = aes(x = manufacturer)) apex(data = mpg, type = \"column\", mapping = aes(x = manufacturer, fill = year)) apex(data = mpg, type = \"column\", mapping = aes(x = manufacturer, fill = year)) %>% ax_chart(stacked = TRUE)"},{"path":"https://dreamrs.github.io/apexcharter/articles/apexcharter.html","id":"line-charts","dir":"Articles","previous_headings":"","what":"Line charts","title":"Starting with ApexCharts","text":"Simple line charts can created (works character, Date POSIXct): represent several lines, use data.frame long format group aesthetic: Create area charts type = \"area\":","code":"data(\"economics\") apex(data = economics, type = \"line\", mapping = aes(x = date, y = uempmed)) data(\"economics_long\") apex(data = economics_long, type = \"line\", mapping = aes(x = date, y = value01, group = variable)) %>% ax_yaxis(decimalsInFloat = 2) # number of decimals to keep apex(data = economics_long, type = \"area\", mapping = aes(x = date, y = value01, fill = variable)) %>% ax_yaxis(decimalsInFloat = 2) %>% # number of decimals to keep ax_chart(stacked = TRUE) %>% ax_yaxis(max = 4, tickAmount = 4)"},{"path":"https://dreamrs.github.io/apexcharter/articles/apexcharter.html","id":"scatter-charts","dir":"Articles","previous_headings":"","what":"Scatter charts","title":"Starting with ApexCharts","text":"Simple bar charts can created : Color points according third variable: change point size using z aesthetics:","code":"apex(data = mtcars, type = \"scatter\", mapping = aes(x = wt, y = mpg)) apex(data = mtcars, type = \"scatter\", mapping = aes(x = wt, y = mpg, fill = cyl)) apex(data = mtcars, type = \"scatter\", mapping = aes(x = wt, y = mpg, z = scales::rescale(qsec)))"},{"path":"https://dreamrs.github.io/apexcharter/articles/apexcharter.html","id":"pie-charts","dir":"Articles","previous_headings":"","what":"Pie charts","title":"Starting with ApexCharts","text":"Simple pie charts can created :","code":"poll <- data.frame( answer = c(\"Yes\", \"No\"), n = c(254, 238) ) apex(data = poll, type = \"pie\", mapping = aes(x = answer, y = n))"},{"path":"https://dreamrs.github.io/apexcharter/articles/apexcharter.html","id":"radial-charts","dir":"Articles","previous_headings":"","what":"Radial charts","title":"Starting with ApexCharts","text":"Simple radial charts can created (pass values directly aes, can use data.frame) : Multi radial chart (one value):","code":"apex(data = NULL, type = \"radialBar\", mapping = aes(x = \"My value\", y = 65)) fruits <- data.frame( name = c('Apples', 'Oranges', 'Bananas', 'Berries'), value = c(44, 55, 67, 83) ) apex(data = fruits, type = \"radialBar\", mapping = aes(x = name, y = value))"},{"path":"https://dreamrs.github.io/apexcharter/articles/apexcharter.html","id":"radar-charts","dir":"Articles","previous_headings":"","what":"Radar charts","title":"Starting with ApexCharts","text":"Simple radar charts can created : grouping variable:","code":"mtcars$model <- rownames(mtcars) apex(data = head(mtcars), type = \"radar\", mapping = aes(x = model, y = qsec)) # extremely complicated reshaping new_mtcars <- reshape( data = head(mtcars), idvar = \"model\", varying = list(c(\"drat\", \"wt\")), times = c(\"drat\", \"wt\"), direction = \"long\", v.names = \"value\", drop = c(\"mpg\", \"cyl\", \"hp\", \"dist\", \"qsec\", \"vs\", \"am\", \"gear\", \"carb\") ) apex(data = new_mtcars, type = \"radar\", mapping = aes(x = model, y = value, group = time))"},{"path":"https://dreamrs.github.io/apexcharter/articles/apexcharter.html","id":"polar-area","dir":"Articles","previous_headings":"","what":"Polar area","title":"Starting with ApexCharts","text":"custom options color mapping:","code":"apex(mtcars, aes(rownames(mtcars), mpg), type = \"polarArea\") %>% ax_legend(show = FALSE) %>% ax_colors(col_numeric(\"Blues\", domain = NULL)(mtcars$mpg)) %>% ax_fill(opacity = 1) %>% ax_stroke(width = 0) %>% ax_tooltip(fillSeriesColor = FALSE)"},{"path":"https://dreamrs.github.io/apexcharter/articles/apexcharter.html","id":"heatmap","dir":"Articles","previous_headings":"","what":"Heatmap","title":"Starting with ApexCharts","text":"Create heatmap :","code":"# create some data sales <- expand.grid(year = 2010:2020, month = month.name) sales$value <- sample(-10:30, nrow(sales), TRUE) apex( data = sales, type = \"heatmap\", mapping = aes(x = year, y = month, fill = value) ) %>% ax_dataLabels(enabled = FALSE) %>% ax_colors(\"#008FFB\")"},{"path":"https://dreamrs.github.io/apexcharter/articles/apexcharter.html","id":"treemap","dir":"Articles","previous_headings":"","what":"Treemap","title":"Starting with ApexCharts","text":"Create treemap :","code":"data(\"mpg\", package = \"ggplot2\") apex(mpg, aes(x = manufacturer), \"treemap\")"},{"path":"https://dreamrs.github.io/apexcharter/articles/apexcharter.html","id":"candlestick","dir":"Articles","previous_headings":"","what":"Candlestick","title":"Starting with ApexCharts","text":"Create candlestick chart :","code":"data(\"candles\", package = \"apexcharter\") apex( candles, aes(x = datetime, open = open, close = close, low = low, high = high), type = \"candlestick\" )"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/advanced-configuration.html","id":"bar-chart","dir":"Articles > Extra","previous_headings":"","what":"Bar chart","title":"Advanced configuration examples","text":"example taken {hrbrthemes} readme, use mpg dataset {ggplot2}. Transform data initialize chart : Change color used : Modify y-axis add percent symbol labels : Add title x-axis : Modify tooltip display “Percentage” instead variable name “pct” : Add title subtitle format : Final result looks like : View full code","code":"data(\"mpg\", package = \"ggplot2\") bars <- count(mpg, class) %>% mutate(pct = n/sum(n)) %>% apex(mapping = aes(class, pct), type = \"column\") bars <- bars %>% ax_colors(\"#617a89\") bars <- bars %>% ax_yaxis( title = list(text = \"Weight (tons)\"), labels = list( formatter = format_num(\".0%\") ), tickAmount = 6, max = 0.3 ) bars <- bars %>% ax_xaxis( title = list(text = \"Fuel efficiency (mpg)\") ) bars <- bars %>% ax_tooltip( y = list( title = list( formatter = JS(\"function() {return 'Percentage';}\") ) ) ) bars <- bars %>% ax_labs( title = \"Seminal ggplot2 column chart example with percents\", subtitle = \"Example taken from {hrbrthemes} readme\" ) %>% ax_title( style = list(fontSize = \"22px\") ) %>% ax_subtitle( style = list(fontSize = \"16px\", color = \"#BDBDBD\") ) bars data(\"mpg\", package = \"ggplot2\") count(mpg, class) %>% mutate(pct = n/sum(n)) %>% apex(mapping = aes(class, pct), type = \"column\") %>% ax_colors(\"#617a89\")%>% ax_yaxis( title = list(text = \"Weight (tons)\"), labels = list( formatter = format_num(\".0%\") ), tickAmount = 6, max = 0.3 ) %>% ax_xaxis( title = list(text = \"Fuel efficiency (mpg)\") ) %>% ax_tooltip( y = list( title = list( formatter = JS(\"function() {return 'Percentage';}\") ) ) ) %>% ax_labs( title = \"Seminal ggplot2 column chart example with percents\", subtitle = \"Example taken from {hrbrthemes} readme\" ) %>% ax_title( style = list(fontSize = \"22px\") ) %>% ax_subtitle( style = list(fontSize = \"16px\", color = \"#BDBDBD\") )"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/advanced-configuration.html","id":"lines","dir":"Articles > Extra","previous_headings":"","what":"Lines","title":"Advanced configuration examples","text":"Dataset used UNHCR (UN Refugee Agency) contains data UNHCRs populations concern summarised continent origin. Transform data initialize chart : Put legend bottom : Change width lines : Change colors (Viridis palette) : Data million, y-axis divide 1e6 limit number digits : display years x-axis labels : tooltip, thousand separator value displayed : Add annotation chart identify Great Lakes refugee crisis 1994 : Add title subtitle format : Final result looks like : View full code","code":"data(\"unhcr_ts\") lines <- unhcr_ts %>% filter(population_type == \"Refugees (incl. refugee-like situations)\") %>% mutate(date = as.Date(paste0(year, \"-01-01\"))) %>% apex(aes(date, n, group = continent_origin), type = \"line\") #> Warning in make_series(mapdata, mapping, type, serie_name): apex: all groups #> must have same length! You can use `tidyr::complete` for this. lines <- lines %>% ax_legend(position = \"bottom\") lines <- lines %>% ax_stroke(width = 2) lines <- lines %>% ax_colors(\"#440154\", \"#414487\", \"#2A788E\", \"#22A884\", \"#7AD151\", \"#FDE725\") lines <- lines %>% ax_yaxis( labels = list( formatter = JS(\"function(val) {return (val/1e6).toFixed(0);}\") ), title = list(text = \"Number of refugees (in million)\") ) lines <- lines %>% ax_xaxis(labels = list(format = \"yyyy\")) lines <- lines %>% ax_tooltip( x = list(format = \"yyyy\"), y = list( formatter = JS( # thousand separator in javascript \"function(value) {return value.toString().replace(/\\\\B(?=(\\\\d{3})+(?!\\\\d))/g, \\\",\\\");}\" ) ) ) lines <- lines %>% ax_annotations( points = list( list( x = JS(\"new Date('1994').getTime()\"), y = 6935296, label = list(text = \"Great Lakes refugee crisis\", offsetY = 0), marker = list(size = 6) ) ) ) lines <- lines %>% ax_labs( title = \"Continent of origin for refugees population\", subtitle = \"Data from the UN Refugee Agency\" ) %>% ax_title( style = list(fontSize = \"22px\") ) %>% ax_subtitle( style = list(fontSize = \"16px\", color = \"#BDBDBD\") ) lines data(\"unhcr_ts\") unhcr_ts %>% filter(population_type == \"Refugees (incl. refugee-like situations)\") %>% mutate(date = as.Date(paste0(year, \"-01-01\"))) %>% apex(aes(date, n, group = continent_origin), type = \"line\") %>% ax_legend(position = \"bottom\") %>% ax_stroke(width = 2) %>% ax_colors(\"#440154\", \"#414487\", \"#2A788E\", \"#22A884\", \"#7AD151\", \"#FDE725\") %>% ax_yaxis( labels = list( formatter = htmlwidgets::JS(\"function(val) {return (val/1e6).toFixed(0);}\") ), title = list(text = \"Number of refugees (in million)\") ) %>% ax_xaxis(labels = list(format = \"yyyy\")) %>% ax_tooltip( x = list(format = \"yyyy\"), y = list( formatter = JS( # thousand separator in javascript \"function(value) {return value.toString().replace(/\\\\B(?=(\\\\d{3})+(?!\\\\d))/g, \\\",\\\");}\" ) ) ) %>% ax_annotations( points = list( list( x = JS(\"new Date('1994').getTime()\"), y = 6935296, label = list(text = \"Great Lakes refugee crisis\", offsetY = 0), marker = list(size = 6) ) ) ) %>% ax_labs( title = \"Continent of origin for refugees population\", subtitle = \"Data from the UN Refugee Agency\" ) %>% ax_title( style = list(fontSize = \"22px\") ) %>% ax_subtitle( style = list(fontSize = \"16px\", color = \"#BDBDBD\") )"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/advanced-configuration.html","id":"scatter-plot","dir":"Articles > Extra","previous_headings":"","what":"Scatter plot","title":"Advanced configuration examples","text":"Dataset used {gapminder}. Transform data initialize chart : Enable zoom axis : Show y-axis border ticks, decimals labels : Configuration x-axis, hide tooltip displayed axis (main tooltip), display two decimals labels (useful zooming, since values logarithm s lot decimals) : Display vertical grid lines (x-axis, y-axis enabled default) : Legend right slightly offset downwards : Add custom tooltip HTML string, data used aesthetic can accessed JavaScript w.config.series[seriesIndex].data[dataPointIndex].x (x variable gdpPercap), w.config.series[seriesIndex].data[dataPointIndex].label (country), s possible use custom aesthetics include data chart configuration script. Add title subtitle format : Final result looks like : View full code","code":"data(\"gapminder\", package = \"gapminder\") scatter <- gapminder %>% filter(year == 2007) %>% mutate( gdpPercap = log(gdpPercap), pop = sqrt(pop / pi) / 1500 ) %>% apex( mapping = aes(gdpPercap, lifeExp, z = pop, group = continent, label = country), type = \"scatter\", height = \"500px\" ) scatter <- scatter %>% ax_chart(zoom = list( enabled = TRUE, type = \"xy\" )) scatter <- scatter %>% ax_yaxis( decimalsInFloat = 0, axisBorder = list(show = TRUE), axisTicks = list(show = TRUE), title = list(text = \"life expectancy at birth (in years)\") ) scatter <- scatter %>% ax_xaxis( tickAmount = 8, labels = list( formatter = JS(\"function(val) {return val.toFixed(2);}\") ), tooltip = list(enabled = FALSE), title = list(text = \"GDP per capita (log-scale)\") ) scatter <- scatter %>% ax_grid(xaxis = list(lines = list(show = TRUE))) scatter <- scatter %>% ax_legend(position = \"right\", offsetY = 70) scatter <- scatter %>% ax_tooltip(custom = JS(paste( \"function({ series, seriesIndex, dataPointIndex, w }) {\", \"console.log(w); return (\", \"'<div>' +\", \"'<div class = \\\"apexcharts-tooltip-title\\\">' +\", \"w.config.series[seriesIndex].data[dataPointIndex].label\", \"+ '<\/div>' +\", \"'<div style = \\\"padding: 5px;\\\">' +\", \"'<div class = \\\"apexcharts-tooltip-y-group\\\">' +\", \"'<span class = \\\"apexcharts-tooltip-text-label\\\">' +\", \"'Population: ' +\", \"'<\/span>' +\", \"'<span class = \\\"apexcharts-tooltip-text-value\\\">' +\", \"Math.round(Math.pow(w.config.series[seriesIndex].data[dataPointIndex].z * 1500, 2) * Math.PI). toString().replace(/\\\\B(?=(\\\\d{3})+(?!\\\\d))/g, \\\",\\\") +\", \"'<\/span>' +\", \"'<\/br>' +\", \"'<span class = \\\"apexcharts-tooltip-text-label\\\">' +\", \"'GDP per capita: ' +\", \"'<\/span>' +\", \"'<span class = \\\"apexcharts-tooltip-text-value\\\">' +\", \"Math.round(Math.exp(w.config.series[seriesIndex].data[dataPointIndex].x)) +\", \"'<\/span>' +\", \"'<\/br>' +\", \"'<span class = \\\"apexcharts-tooltip-text-label\\\">' +\", \"'Life expectancy: ' +\", \"'<\/span>' +\", \"'<span class = \\\"apexcharts-tooltip-text-value\\\">' +\", \"w.config.series[seriesIndex].data[dataPointIndex].y +\", \"'<\/span>' +\", \"'<\/div>' +\", \"'<\/div>' +\", \"'<\/div>'\", \");\", \"}\", sep = \"\\n\" ))) scatter <- scatter %>% ax_labs( title = \"Life expectancy, GDP and population\", subtitle = \"gapminder dataset from {gapminder}\" ) %>% ax_title( style = list(fontSize = \"22px\") ) %>% ax_subtitle( style = list(fontSize = \"16px\", color = \"#BDBDBD\") ) scatter data(\"gapminder\", package = \"gapminder\") gapminder %>% filter(year == 2007) %>% mutate( gdpPercap = log(gdpPercap), pop = sqrt(pop / pi) / 1500 ) %>% apex(mapping = aes(gdpPercap, lifeExp, z = pop, group = continent, label = country), type = \"scatter\") %>% ax_chart(zoom = list( enabled = TRUE, type = \"xy\" )) %>% ax_yaxis( decimalsInFloat = 0, axisBorder = list(show = TRUE), axisTicks = list(show = TRUE), title = list(text = \"life expectancy at birth (in years)\") ) %>% ax_xaxis( tickAmount = 8, labels = list( formatter = JS(\"function(val) {return val.toFixed(2);}\") ), tooltip = list(enabled = FALSE), title = list(text = \"GDP per capita (log-scale)\") ) %>% ax_grid(xaxis = list(lines = list(show = TRUE))) %>% ax_legend(position = \"right\", offsetY = 70) %>% ax_tooltip(custom = JS(paste( \"function({ series, seriesIndex, dataPointIndex, w }) {\", \"console.log(w); return (\", \"'<div>' +\", \"'<div class = \\\"apexcharts-tooltip-title\\\">' +\", \"w.config.series[seriesIndex].data[dataPointIndex].label\", \"+ '<\/div>' +\", \"'<div style = \\\"padding: 5px;\\\">' +\", \"'<div class = \\\"apexcharts-tooltip-y-group\\\">' +\", \"'<span class = \\\"apexcharts-tooltip-text-label\\\">' +\", \"'Population: ' +\", \"'<\/span>' +\", \"'<span class = \\\"apexcharts-tooltip-text-value\\\">' +\", \"Math.round(Math.pow(w.config.series[seriesIndex].data[dataPointIndex].z * 1500, 2) * Math.PI). toString().replace(/\\\\B(?=(\\\\d{3})+(?!\\\\d))/g, \\\",\\\") +\", \"'<\/span>' +\", \"'<\/br>' +\", \"'<span class = \\\"apexcharts-tooltip-text-label\\\">' +\", \"'GDP per capita: ' +\", \"'<\/span>' +\", \"'<span class = \\\"apexcharts-tooltip-text-value\\\">' +\", \"Math.round(Math.exp(w.config.series[seriesIndex].data[dataPointIndex].x)) +\", \"'<\/span>' +\", \"'<\/br>' +\", \"'<span class = \\\"apexcharts-tooltip-text-label\\\">' +\", \"'Life expectancy: ' +\", \"'<\/span>' +\", \"'<span class = \\\"apexcharts-tooltip-text-value\\\">' +\", \"w.config.series[seriesIndex].data[dataPointIndex].y +\", \"'<\/span>' +\", \"'<\/div>' +\", \"'<\/div>' +\", \"'<\/div>'\", \");\", \"}\", sep = \"\\n\" ))) %>% ax_labs( title = \"Life expectancy, GDP and population\", subtitle = \"gapminder dataset from {gapminder}\" ) %>% ax_title( style = list(fontSize = \"22px\") ) %>% ax_subtitle( style = list(fontSize = \"16px\", color = \"#BDBDBD\") )"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/advanced-configuration.html","id":"heatmap","dir":"Articles > Extra","previous_headings":"","what":"Heatmap","title":"Advanced configuration examples","text":"adaption fancy {highcharter} example, based WSJ visualization. Remove animations (little slow otherwise) : Remove values displayed heatmap : Remove space squared heatmap : s possible make continuous scale legend (like highcharter), use breakpoints : Missing values colored default, set displayed white, now hide corresponding legend : Set size y-axis labels : Add vertical line identify year vaccine introduced : usual, add title subtitle format : Final result looks like : View full code","code":"data(\"vaccines\", package = \"highcharter\") heatmap <- apex( vaccines, aes(year, state, fill = count), type = \"heatmap\", height = \"800px\" ) heatmap <- heatmap %>% ax_chart(animations = list(enabled = FALSE)) heatmap <- heatmap %>% ax_dataLabels(enabled = FALSE) heatmap <- heatmap %>% ax_stroke(width = 0) heatmap <- heatmap %>% ax_plotOptions( heatmap = heatmap_opts( radius = 0, enableShades = FALSE, colorScale = list( ranges = list( list( from = 0, to = 0.001, name = \"Missing\", color = \"#FFF\" ), list( from = 0.001, to = 4, name = \"low\", # color = \"#000004\" color = \"#FDE725\" ), list( from = 4, to = 70, name = \"mid-low\", # color = \"#781C6D\", color = \"#35B779\" ), list( from = 70, to = 290, name = \"mid-high\", # color = \"#ED6925\", color = \"#31688E\" ), list( from = 290, to = 3000, name = \"high\", # color = \"#FCFFA4\", color = \"#440154\" ) ) ) ) ) heatmap <- heatmap %>% ax_legend( formatter = JS( \"function(seriesName, opts) { if (seriesName == 'Missing') return null; else return seriesName; }\" ), offsetY = -15 ) heatmap <- heatmap %>% ax_yaxis( labels = list( style = list(fontSize = \"8px\") ) ) heatmap <- heatmap %>% ax_annotations( xaxis = list( list( x = 1963, x2 = 1963.1, strokeDashArray = 0, opacity = 1, borderColor = \"firebrick\", fillColor = \"firebrick\", label = list( borderColor = \"firebrick\", style = list(color = \"#FFF\", background = \"firebrick\"), text = \"Vaccine Introduced\", orientation = \"horizontal\", position = \"bottom\", offsetY = 0 ) ) ) ) heatmap <- heatmap %>% ax_labs( title = \"Infectious Diseases and Vaccines\", subtitle = \"vaccines dataset from {highcharter}\" ) %>% ax_title( style = list(fontSize = \"22px\") ) %>% ax_subtitle( style = list(fontSize = \"16px\", color = \"#BDBDBD\") ) heatmap data(\"vaccines\", package = \"highcharter\") apex(vaccines, aes(year, state, fill = count), type = \"heatmap\") %>% ax_chart(animations = list(enabled = FALSE)) %>% ax_dataLabels(enabled = FALSE) %>% ax_stroke(width = 0) %>% ax_plotOptions( heatmap = heatmap_opts( radius = 0, enableShades = FALSE, colorScale = list( ranges = list( list( from = 0, to = 0.001, name = \"Missing\", color = \"#FFF\" ), list( from = 0.001, to = 4, name = \"low\", # color = \"#000004\" color = \"#FDE725\" ), list( from = 4, to = 70, name = \"mid-low\", # color = \"#781C6D\", color = \"#35B779\" ), list( from = 70, to = 290, name = \"mid-high\", # color = \"#ED6925\", color = \"#31688E\" ), list( from = 290, to = 3000, name = \"high\", # color = \"#FCFFA4\", color = \"#440154\" ) ) ) ) ) %>% ax_legend( formatter = JS( \"function(seriesName, opts) { if (seriesName == 'Missing') return null; else return seriesName; }\" ), offsetY = -15 ) %>% ax_yaxis( labels = list( style = list(fontSize = \"8px\"), offsetY = -20 ) ) %>% ax_annotations( xaxis = list( list( x = 1963, x2 = 1963.1, strokeDashArray = 0, opacity = 1, borderColor = \"firebrick\", fillColor = \"firebrick\", label = list( borderColor = \"firebrick\", style = list(color = \"#FFF\", background = \"firebrick\"), text = \"Vaccine Introduced\", orientation = \"horizontal\", position = \"bottom\", offsetY = 0 ) ) ) ) %>% ax_labs( title = \"Infectious Diseases and Vaccines\", subtitle = \"vaccines dataset from {highcharter}\" ) %>% ax_title( style = list(fontSize = \"22px\") ) %>% ax_subtitle( style = list(fontSize = \"16px\", color = \"#BDBDBD\") )"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/chart-options.html","id":"title-subtitle-and-axis-titles","dir":"Articles > Extra","previous_headings":"","what":"Title, subtitle and axis titles","title":"Customize chart options","text":"Packages data used :","code":"library(apexcharter) data(\"diamonds\", package = \"ggplot2\")"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/chart-options.html","id":"labs","dir":"Articles > Extra","previous_headings":"Title, subtitle and axis titles","what":"Labs","title":"Customize chart options","text":"can set title, subtitle axis titles ax_labs(): want control (font size, alignment, …), can use ax_title(), ax_subtitle(), ax_xaxis() ax_yaxis(), described .","code":"apex(data = diamonds, type = \"column\", mapping = aes(x = cut)) %>% ax_labs( title = \"Cut distribution\", subtitle = \"Data from ggplot2\", x = \"Cut\", y = \"Count\" )"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/chart-options.html","id":"title","dir":"Articles > Extra","previous_headings":"Title, subtitle and axis titles","what":"Title","title":"Customize chart options","text":"can set options, example: Full list parameters available : https://apexcharts.com/docs/options/title/","code":"apex(data = diamonds, type = \"column\", mapping = aes(x = cut)) %>% ax_title(text = \"Cut distribution\") apex(data = diamonds, type = \"column\", mapping = aes(x = cut)) %>% ax_title( text = \"Cut distribution\", align = \"center\", style = list(fontSize = \"22px\", fontWeight = 700) )"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/chart-options.html","id":"subtitle","dir":"Articles > Extra","previous_headings":"Title, subtitle and axis titles","what":"Subtitle","title":"Customize chart options","text":"options title: Full list parameters available : https://apexcharts.com/docs/options/subtitle/","code":"apex(data = diamonds, type = \"column\", mapping = aes(x = cut)) %>% ax_title(text = \"Cut distribution\") %>% ax_subtitle(text = \"Data from ggplot2\") apex(data = diamonds, type = \"column\", mapping = aes(x = cut)) %>% ax_title( text = \"Cut distribution\", align = \"center\", style = list(fontSize = \"22px\", fontWeight = 700) ) %>% ax_subtitle( text = \"Data from ggplot2\", align = \"center\", style = list(fontSize = \"16px\", fontWeight = 400, color = \"#BDBDBD\") )"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/chart-options.html","id":"axis-title","dir":"Articles > Extra","previous_headings":"Title, subtitle and axis titles","what":"Axis title","title":"Customize chart options","text":"options:","code":"apex(data = diamonds, type = \"column\", mapping = aes(x = cut)) %>% ax_yaxis(title = list(text = \"Count\")) %>% ax_xaxis(title = list(text = \"Cut\")) apex(data = diamonds, type = \"column\", mapping = aes(x = cut)) %>% ax_yaxis(title = list( text = \"Count\", style = list(fontSize = \"14px\", color = \"#BDBDBD\") )) %>% ax_xaxis(title = list( text = \"Cut\", style = list(fontSize = \"14px\", color = \"#BDBDBD\") ))"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/chart-options.html","id":"lines","dir":"Articles > Extra","previous_headings":"","what":"Lines","title":"Customize chart options","text":"","code":"library(apexcharter) ## economics dataset from ggplot2 data(\"economics\", package = \"ggplot2\") data(\"economics_long\", package = \"ggplot2\") economics <- tail(economics, 50) economics_long <- subset(economics_long, date >= \"2010-01-01\")"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/chart-options.html","id":"type-of-line","dir":"Articles > Extra","previous_headings":"Lines","what":"Type of line","title":"Customize chart options","text":"Classic line: Spline curve: Steps chart:","code":"apex(data = economics, type = \"line\", mapping = aes(x = date, y = uempmed)) apex(data = economics, type = \"line\", mapping = aes(x = date, y = uempmed)) %>% ax_stroke(curve = \"smooth\") apex(data = economics, type = \"line\", mapping = aes(x = date, y = uempmed)) %>% ax_stroke(curve = \"stepline\")"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/chart-options.html","id":"line-appearance","dir":"Articles > Extra","previous_headings":"Lines","what":"Line appearance","title":"Customize chart options","text":"Color line gradient: Solid area color: Line width: Dotted line","code":"apex(data = economics, type = \"line\", mapping = aes(x = date, y = uempmed)) %>% ax_fill( type = \"gradient\", gradient = list( shade = \"dark\", gradientToColors = list(\"#FDD835\"), shadeIntensity = 1, type = \"horizontal\", opacityFrom = 1, opacityTo = 1, stops = c(0, 100, 100, 100) ) ) apex(data = economics, type = \"area\", mapping = aes(x = date, y = uempmed)) %>% ax_fill(type = \"solid\", opacity = 1) apex(data = economics, type = \"line\", mapping = aes(x = date, y = uempmed)) %>% ax_stroke(width = 1) apex(data = economics, type = \"line\", mapping = aes(x = date, y = uempmed)) %>% ax_stroke(dashArray = 6)"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/chart-options.html","id":"markers","dir":"Articles > Extra","previous_headings":"Lines","what":"Markers","title":"Customize chart options","text":"Add points line : Add labels points","code":"apex(data = tail(economics, 20), type = \"line\", mapping = aes(x = date, y = uempmed)) %>% ax_markers(size = 6) apex(data = tail(economics, 20), type = \"line\", mapping = aes(x = date, y = uempmed)) %>% ax_markers(size = 6) %>% ax_dataLabels(enabled = TRUE)"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/chart-options.html","id":"multiple-lines","dir":"Articles > Extra","previous_headings":"Lines","what":"Multiple lines","title":"Customize chart options","text":"can use vectors parameters custom series separately:","code":"apex(data = economics_long, type = \"line\", mapping = aes(x = date, y = value01, group = variable)) %>% ax_yaxis(decimalsInFloat = 2) %>% ax_markers(size = c(3, 6)) %>% ax_stroke(width = c(1, 3)) apex(data = economics_long, type = \"line\", mapping = aes(x = date, y = value01, group = variable)) %>% ax_yaxis(decimalsInFloat = 2) %>% ax_stroke(dashArray = c(8, 5))"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/facets.html","id":"facet-wrap","dir":"Articles > Extra","previous_headings":"","what":"Facet wrap","title":"Create grid of charts","text":"Create grid charts according variable data ax_facet_wrap() : Synchronized line charts free y-axis : Dont forget set minWidth y axis labels synchronizing charts, otherwise unexpected results can occurs.","code":"library(apexcharter) data(\"mpg\", package = \"ggplot2\") apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_xaxis(labels = list(formatter = format_num(\".0f\"))) %>% ax_labs( title = \"Facet wrap example\", subtitle = \"mpg data from ggplot2\", x = \"engine displacement, in litres\", y = \"city miles per gallon\" ) %>% ax_facet_wrap(vars(drv), ncol = 2) library(apexcharter) data(\"economics_long\", package = \"ggplot2\") apex(economics_long, aes(date, value), type = \"line\", synchronize = \"sync-it\") %>% ax_yaxis( decimalsInFloat = 0, labels = list( formatter = format_num(\"~s\"), minWidth = 40 ) ) %>% ax_tooltip(x = list(format = \"yyyy\")) %>% ax_facet_wrap(vars(variable), scales = \"free_y\")"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/facets.html","id":"facet-grid","dir":"Articles > Extra","previous_headings":"","what":"Facet grid","title":"Create grid of charts","text":"Create matrix charts defined row column faceting variables ax_facet_grid() :","code":"library(apexcharter) data(\"mpg\", package = \"ggplot2\") apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_xaxis(labels = list(formatter = format_num(\".0f\"))) %>% ax_labs( title = \"Facet grid example\", subtitle = \"mpg data from ggplot2\", x = \"engine displacement, in litres\", y = \"city miles per gallon\" ) %>% ax_facet_grid(rows = vars(drv), cols = vars(year))"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/facets.html","id":"grid","dir":"Articles > Extra","previous_headings":"","what":"Grid","title":"Create grid of charts","text":"can construct grid (unrelated) charts apex_grid(), construct charts independently assemble grid: grid_area argument allow specify space occupied chart, can generate interactively grid template .","code":"library(apexcharter) data(\"mpg\", package = \"ggplot2\") # Construct 3 charts a1 <- apex(mpg, aes(manufacturer), type = \"bar\") a2 <- apex(mpg, aes(trans), type = \"column\") a3 <- apex(mpg, aes(drv), type = \"pie\") # Assemble them in a grid apex_grid( a1, a2, a3, grid_area = c(\"1 / 1 / 3 / 2\", \"1 / 2 / 2 / 4\", \"2 / 2 / 3 / 4\"), ncol = 3, nrow = 2, height = \"600px\" )"},{"path":[]},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/shiny-integration.html","id":"create-and-update-or-destroy-and-re-create","dir":"Articles > Extra","previous_headings":"Charts","what":"Create and update (or destroy and re-create)","title":"Use in Shiny application","text":"graph generated Shiny, values change (via reactive function), graph regenerated, data updated. changed specific options graphic (maximum y axis value, charts title, …) updated. behavior can controlled auto_update argument (available apexchart() apex()) : default, auto_update TRUE : want re-create whole chart, set option FALSE: can also use config_update() specify update :","code":"apex(..., auto_update = TRUE) apex(..., auto_update = FALSE) apex(..., auto_update = config_update(update_options = TRUE))"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/shiny-integration.html","id":"proxy","dir":"Articles > Extra","previous_headings":"Charts","what":"Proxy","title":"Use in Shiny application","text":"proxy also implemented update charts manually server-side. can update data: sure use shiny::isolate() block reactivity renderApexchart function set auto_update FALSE prevent updating twice. can use observe function (reactive function) apexchartProxy() output id get chart instance ax_proxy_series() update data. want update charts options, use :","code":"output$my_chart <- renderApexchart({ apex(data = isolate(data_reactive()), ..., auto_update = FALSE) }) observeEvent(input$update, { apexchartProxy(\"my_chart\") %>% ax_proxy_series(data_reactive()) }) observeEvent(input$update, { apexchartProxy(\"my_chart\") %>% ax_proxy_options(list( title = list( text = \"New title\" ), xaxis = list( max = NEW_VALUE ) )) })"},{"path":[]},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/shiny-integration.html","id":"click","dir":"Articles > Extra","previous_headings":"Interactions","what":"Click","title":"Use in Shiny application","text":"Click chart select data point retrieve value server side set_input_click() : Value server-side available input$click. Depending type graphic, can retrieve : bar column: category (x-axis). pie donut: label. time-series: retrieve x-axis value, display markers size > 0 set tooltips options intersect = TRUE shared = FALSE. scatter: retrieve XY coordinates. Multiple selection possible can change darken effect selected bars : examples available :","code":"data.frame( month = month.abb, value = sample(1:100, 12) ) %>% apex(aes(month, value), height = \"250px\") %>% ax_title(\"Click a bar:\") %>% set_input_click(\"click\") data.frame( month = month.abb, value = sample(1:100, 12) ) %>% apex(aes(month, value), height = \"250px\") %>% ax_title(\"Click several bars:\") %>% set_input_click( inputId = \"click\", multiple = TRUE, effect_value = 0.1 ) run_demo_input(\"click\")"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/shiny-integration.html","id":"zoom","dir":"Articles > Extra","previous_headings":"Interactions","what":"Zoom","title":"Use in Shiny application","text":"Retrieve coordinates axes graph zoomed : Value server-side available input$zoom form : values y NULL zoom possible x-axis, scatter chart example can zoom axis. examples available :","code":"data(\"economics\", package = \"ggplot2\") apex(economics, aes(date, psavert), type = \"line\", height = \"250px\") %>% set_input_zoom(\"zoom\") #> $x #> $x$min #> [1] \"1981-10-24 15:41:16 UTC\" #> #> $x$max #> [1] \"1992-01-24 06:40:22 UTC\" #> #> #> $y #> $y$min #> NULL #> #> $y$max #> NULL run_demo_input(\"zoom\")"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/shiny-integration.html","id":"selection","dir":"Articles > Extra","previous_headings":"Interactions","what":"Selection","title":"Use in Shiny application","text":"Retrieve coordinates axes user select area chart (without zooming): Value server-side available input$selection form : can define selected area start: selection made possible x-axis, case scatter chart example, can select rectangle (axis): case, input value look like : examples available :","code":"apex(economics, aes(date, psavert), type = \"line\", height = \"250px\") %>% set_input_selection(\"selection\") #> $x #> $x$min #> [1] \"1981-10-24 15:41:16 UTC\" #> #> $x$max #> [1] \"1992-01-24 06:40:22 UTC\" apex(economics, aes(date, psavert), type = \"line\", height = \"250px\") %>% set_input_selection( inputId = \"selection\", xmin = format_date(\"1980-01-01\"), xmax = format_date(\"1985-01-01\") ) apex(iris, aes(Sepal.Length, Sepal.Width), type = \"scatter\", height = \"250px\") %>% set_input_selection(\"selection_scatter\", type = \"xy\") #> $x #> $x$min #> [1] 5.130187 #> #> $x$max #> [1] 5.541228 #> #> #> $y #> $y$min #> [1] 2.959623 #> #> $y$max #> [1] 3.860357 run_demo_input(\"selection\")"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/sync-charts.html","id":"synchronize-charts","dir":"Articles > Extra","previous_headings":"","what":"Synchronize charts","title":"Synchronize charts with each other","text":"Apexcharts can sync (tooltip, zoom) several charts together providing common id synchronize argument. works Shiny Markdown. example create two charts, tooltip displayed charts hover one, zoom one, one synced : Note set common minWidth y axis labels. Different width yaxis different charts produce incorrect results hovering interacting. example Shiny, can run:","code":"apex( data = tail(economics, 150), mapping = aes(x = date, y = pce), type = \"line\", synchronize = \"economics\" ) %>% ax_yaxis( decimalsInFloat = 0, labels = list( formatter = format_num(\"~s\"), minWidth = 40 ) ) %>% ax_tooltip(x = list(format = \"yyyy\")) apex( data = tail(economics, 150), mapping = aes(x = date, y = psavert), type = \"line\", synchronize = \"economics\" ) %>% ax_yaxis( decimalsInFloat = 0, labels = list( formatter = format_num(\"~s\"), minWidth = 40 ) ) %>% ax_tooltip(x = list(format = \"yyyy\")) run_sync_demo()"},{"path":"https://dreamrs.github.io/apexcharter/articles/extra/sync-charts.html","id":"brush-chart","dir":"Articles > Extra","previous_headings":"","what":"Brush chart","title":"Synchronize charts with each other","text":"Create brush chart navigate synced chart : use chart navigate chart .","code":"apex( data = economics, mapping = aes(x = date, y = psavert), type = \"line\" ) %>% ax_chart( id = \"target-chart\", # <-- define target id here toolbar = list( autoSelected = \"pan\", show = FALSE ) ) apex( data = economics, mapping = aes(x = date, y = psavert), type = \"line\", height = \"130px\" ) %>% ax_chart( brush = list( target = \"target-chart\", # <-- use target id here enabled = TRUE ), offsetY = -20, selection = list( enabled = TRUE, # <-- enable selection and define starting range xaxis = list( min = format_date(economics$date[1]), max = format_date(economics$date[100]) ) ) ) %>% ax_xaxis(labels = list(show = FALSE)) %>% ax_yaxis(labels = list(show = FALSE))"},{"path":"https://dreamrs.github.io/apexcharter/authors.html","id":null,"dir":"","previous_headings":"","what":"Authors","title":"Authors and Citation","text":"Victor Perrier. Author, maintainer. Fanny Meyer. Author. Juned Chhipa. Copyright holder. apexcharts.js library Mike Bostock. Copyright holder. d3.format library","code":""},{"path":"https://dreamrs.github.io/apexcharter/authors.html","id":"citation","dir":"","previous_headings":"","what":"Citation","title":"Authors and Citation","text":"Perrier V, Meyer F (2021). apexcharter: Create Interactive Chart JavaScript 'ApexCharts' Library. https://github.com/dreamRs/apexcharter, https://dreamrs.github.io/apexcharter/.","code":"@Manual{, title = {apexcharter: Create Interactive Chart with the JavaScript 'ApexCharts' Library}, author = {Victor Perrier and Fanny Meyer}, year = {2021}, note = {https://github.com/dreamRs/apexcharter, https://dreamrs.github.io/apexcharter/}, }"},{"path":"https://dreamrs.github.io/apexcharter/index.html","id":"apexcharter","dir":"","previous_headings":"","what":"Create Interactive Chart with the JavaScript ApexCharts Library","title":"Create Interactive Chart with the JavaScript ApexCharts Library","text":"Htmlwidget apexcharts.js : modern JavaScript charting library build interactive charts visualizations simple API. See online demo examples.","code":""},{"path":"https://dreamrs.github.io/apexcharter/index.html","id":"installation","dir":"","previous_headings":"","what":"Installation","title":"Create Interactive Chart with the JavaScript ApexCharts Library","text":"Install CRAN : install development version GitHub :","code":"install.packages(\"apexcharter\") # install.packages(\"remotes\") remotes::install_github(\"dreamRs/apexcharter\")"},{"path":"https://dreamrs.github.io/apexcharter/index.html","id":"quick-charts","dir":"","previous_headings":"","what":"Quick Charts","title":"Create Interactive Chart with the JavaScript ApexCharts Library","text":"Use apex function quickly create visualizations : datetime:","code":"library(apexcharter) data(\"mpg\", package = \"ggplot2\") apex(data = mpg, type = \"bar\", mapping = aes(manufacturer)) data(\"economics\", package = \"ggplot2\") apex(data = economics, type = \"line\", mapping = aes(x = date, y = uempmed)) %>% ax_stroke(width = 1)"},{"path":"https://dreamrs.github.io/apexcharter/index.html","id":"full-api","dir":"","previous_headings":"","what":"Full API","title":"Create Interactive Chart with the JavaScript ApexCharts Library","text":"methods ApexCharts available function like ax_* compatible pipe magrittr :","code":"library(apexcharter) data(mpg, package = \"ggplot2\") apexchart() %>% ax_chart(type = \"bar\") %>% ax_plotOptions(bar = bar_opts( horizontal = FALSE, endingShape = \"flat\", columnWidth = \"70%\", dataLabels = list( position = \"top\" )) ) %>% ax_grid( show = TRUE, position = \"front\", borderColor = \"#FFF\" ) %>% ax_series(list( name = \"Count\", data = tapply(mpg$manufacturer, mpg$manufacturer, length) )) %>% ax_colors(\"#112446\") %>% ax_xaxis(categories = unique(mpg$manufacturer)) %>% ax_title(text = \"Number of models\") %>% ax_subtitle(text = \"Data from ggplot2\")"},{"path":"https://dreamrs.github.io/apexcharter/index.html","id":"raw-api","dir":"","previous_headings":"","what":"Raw API","title":"Create Interactive Chart with the JavaScript ApexCharts Library","text":"Pass list parameters function:","code":"apexchart(ax_opts = list( chart = list( type = \"line\" ), stroke = list( curve = \"smooth\" ), grid = list( borderColor = \"#e7e7e7\", row = list( colors = c(\"#f3f3f3\", \"transparent\"), opacity = 0.5 ) ), dataLabels = list( enabled = TRUE ), markers = list(style = \"inverted\", size = 6), series = list( list( name = \"High\", data = c(28, 29, 33, 36, 32, 32, 33) ), list( name = \"Low\", data = c(12, 11, 14, 18, 17, 13, 13) ) ), title = list( text = \"Average High & Low Temperature\", align = \"left\" ), xaxis = list( categories = month.abb[1:7] ), yaxis = list( title = list(text = \"Temperature\"), labels = list( formatter = htmlwidgets::JS(\"function(value) {return value + '\\u00b0C';}\") ) ) ))"},{"path":"https://dreamrs.github.io/apexcharter/index.html","id":"development","dir":"","previous_headings":"","what":"Development","title":"Create Interactive Chart with the JavaScript ApexCharts Library","text":"package use {packer} manage JavaScript assets, see packers documentation . Install nodes modules : Modify srcjs/widgets/apexcharter.js, run: Re-install R package try apexcharter() apex() functions.","code":"packer::npm_install() packer::bundle()"},{"path":"https://dreamrs.github.io/apexcharter/reference/add-line.html","id":null,"dir":"Reference","previous_headings":"","what":"Add a line to a chart — add-line","title":"Add a line to a chart — add-line","text":"Add line existing chart (bar, scatter line types supported). scatter charts can also add smooth line.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add-line.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Add a line to a chart — add-line","text":"","code":"add_line( ax, mapping, data = NULL, type = c(\"line\", \"spline\"), serie_name = NULL ) add_smooth_line( ax, formula = y ~ x, model = c(\"lm\", \"loess\"), n = 100, ..., type = c(\"line\", \"spline\"), serie_name = NULL )"},{"path":"https://dreamrs.github.io/apexcharter/reference/add-line.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Add a line to a chart — add-line","text":"ax apexchart() htmlwidget object. mapping Default list aesthetic mappings use chart. data data.frame use add line, NULL (default), data.frame provided apex() used. type Type line. serie_name Name serie displayed tooltip legend. formula Formula passed method, default y ~ x main aesthetics. model Model use lm loess. n Number points used predictions. ... Arguments passed model.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add-line.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Add a line to a chart — add-line","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add-line.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Add a line to a chart — add-line","text":"","code":"library(apexcharter) # Bar ---- data(\"climate_paris\") # Add a line on a column's chart apex(climate_paris, aes(month, precipitation), type = \"column\") %>% add_line(aes(month, temperature)) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"precipitation\",\"type\":\"bar\",\"data\":[{\"x\":\"Jan\",\"y\":53.7},{\"x\":\"Feb\",\"y\":43.7},{\"x\":\"Mar\",\"y\":48.5},{\"x\":\"Apr\",\"y\":53},{\"x\":\"May\",\"y\":65},{\"x\":\"Jun\",\"y\":54.6},{\"x\":\"Jul\",\"y\":63.2},{\"x\":\"Aug\",\"y\":43},{\"x\":\"Sep\",\"y\":54.7},{\"x\":\"Oct\",\"y\":59.7},{\"x\":\"Nov\",\"y\":52},{\"x\":\"Dec\",\"y\":58.7}]},{\"name\":\"temperature\",\"type\":\"line\",\"data\":[{\"x\":\"Jan\",\"y\":4.7},{\"x\":\"Feb\",\"y\":5.5},{\"x\":\"Mar\",\"y\":8.4},{\"x\":\"Apr\",\"y\":10.8},{\"x\":\"May\",\"y\":14.8},{\"x\":\"Jun\",\"y\":17.6},{\"x\":\"Jul\",\"y\":20},{\"x\":\"Aug\",\"y\":20},{\"x\":\"Sep\",\"y\":16.7},{\"x\":\"Oct\",\"y\":12.6},{\"x\":\"Nov\",\"y\":7.9},{\"x\":\"Dec\",\"y\":5.7}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"stroke\":{\"width\":[0,4],\"curve\":\"straight\"}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"Apr\",\"max\":\"Sep\"},\"type\":\"column\",\"mixed_type\":\"bar\"},\"evals\":[],\"jsHooks\":[]} # Add secondary axis apex(climate_paris, aes(month, precipitation), type = \"column\") %>% add_line(aes(month, temperature)) %>% ax_yaxis( title = list(text = \"Precipitation (in mm)\") ) %>% ax_yaxis2( opposite = TRUE, decimalsInFloat = 0, title = list(text = \"Temperature (in degree celsius)\") ) %>% ax_dataLabels( enabled = TRUE, enabledOnSeries = list(1) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"precipitation\",\"type\":\"bar\",\"data\":[{\"x\":\"Jan\",\"y\":53.7},{\"x\":\"Feb\",\"y\":43.7},{\"x\":\"Mar\",\"y\":48.5},{\"x\":\"Apr\",\"y\":53},{\"x\":\"May\",\"y\":65},{\"x\":\"Jun\",\"y\":54.6},{\"x\":\"Jul\",\"y\":63.2},{\"x\":\"Aug\",\"y\":43},{\"x\":\"Sep\",\"y\":54.7},{\"x\":\"Oct\",\"y\":59.7},{\"x\":\"Nov\",\"y\":52},{\"x\":\"Dec\",\"y\":58.7}]},{\"name\":\"temperature\",\"type\":\"line\",\"data\":[{\"x\":\"Jan\",\"y\":4.7},{\"x\":\"Feb\",\"y\":5.5},{\"x\":\"Mar\",\"y\":8.4},{\"x\":\"Apr\",\"y\":10.8},{\"x\":\"May\",\"y\":14.8},{\"x\":\"Jun\",\"y\":17.6},{\"x\":\"Jul\",\"y\":20},{\"x\":\"Aug\",\"y\":20},{\"x\":\"Sep\",\"y\":16.7},{\"x\":\"Oct\",\"y\":12.6},{\"x\":\"Nov\",\"y\":7.9},{\"x\":\"Dec\",\"y\":5.7}]}],\"dataLabels\":{\"enabled\":true,\"enabledOnSeries\":[1]},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"stroke\":{\"width\":[0,4],\"curve\":\"straight\"},\"yaxis\":[{\"labels\":{\"style\":{\"colors\":\"#848484\"}},\"title\":{\"text\":\"Precipitation (in mm)\"}},{\"opposite\":true,\"decimalsInFloat\":0,\"title\":{\"text\":\"Temperature (in degree celsius)\"}}]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"Apr\",\"max\":\"Sep\"},\"type\":\"column\",\"mixed_type\":\"bar\"},\"evals\":[],\"jsHooks\":[]} # Scatter ---- # add smooth line on scatter plot apex(cars, aes(speed, dist), type = \"scatter\") %>% add_line(aes(x, y), data = lowess(cars), serie_name = \"lowess\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"dist\",\"type\":\"scatter\",\"data\":[{\"x\":4,\"y\":2},{\"x\":4,\"y\":10},{\"x\":7,\"y\":4},{\"x\":7,\"y\":22},{\"x\":8,\"y\":16},{\"x\":9,\"y\":10},{\"x\":10,\"y\":18},{\"x\":10,\"y\":26},{\"x\":10,\"y\":34},{\"x\":11,\"y\":17},{\"x\":11,\"y\":28},{\"x\":12,\"y\":14},{\"x\":12,\"y\":20},{\"x\":12,\"y\":24},{\"x\":12,\"y\":28},{\"x\":13,\"y\":26},{\"x\":13,\"y\":34},{\"x\":13,\"y\":34},{\"x\":13,\"y\":46},{\"x\":14,\"y\":26},{\"x\":14,\"y\":36},{\"x\":14,\"y\":60},{\"x\":14,\"y\":80},{\"x\":15,\"y\":20},{\"x\":15,\"y\":26},{\"x\":15,\"y\":54},{\"x\":16,\"y\":32},{\"x\":16,\"y\":40},{\"x\":17,\"y\":32},{\"x\":17,\"y\":40},{\"x\":17,\"y\":50},{\"x\":18,\"y\":42},{\"x\":18,\"y\":56},{\"x\":18,\"y\":76},{\"x\":18,\"y\":84},{\"x\":19,\"y\":36},{\"x\":19,\"y\":46},{\"x\":19,\"y\":68},{\"x\":20,\"y\":32},{\"x\":20,\"y\":48},{\"x\":20,\"y\":52},{\"x\":20,\"y\":56},{\"x\":20,\"y\":64},{\"x\":22,\"y\":66},{\"x\":23,\"y\":54},{\"x\":24,\"y\":70},{\"x\":24,\"y\":92},{\"x\":24,\"y\":93},{\"x\":24,\"y\":120},{\"x\":25,\"y\":85}]},{\"name\":\"lowess\",\"type\":\"line\",\"data\":[{\"x\":4,\"y\":4.96545927718688},{\"x\":4,\"y\":4.96545927718688},{\"x\":7,\"y\":13.1244950396664},{\"x\":7,\"y\":13.1244950396664},{\"x\":8,\"y\":15.8586333820983},{\"x\":9,\"y\":18.5796905142177},{\"x\":10,\"y\":21.2803125785285},{\"x\":10,\"y\":21.2803125785285},{\"x\":10,\"y\":21.2803125785285},{\"x\":11,\"y\":24.1292771489265},{\"x\":11,\"y\":24.1292771489265},{\"x\":12,\"y\":27.1195485506035},{\"x\":12,\"y\":27.1195485506035},{\"x\":12,\"y\":27.1195485506035},{\"x\":12,\"y\":27.1195485506035},{\"x\":13,\"y\":30.027276331154},{\"x\":13,\"y\":30.027276331154},{\"x\":13,\"y\":30.027276331154},{\"x\":13,\"y\":30.027276331154},{\"x\":14,\"y\":32.9625061361576},{\"x\":14,\"y\":32.9625061361576},{\"x\":14,\"y\":32.9625061361576},{\"x\":14,\"y\":32.9625061361576},{\"x\":15,\"y\":36.7577283416497},{\"x\":15,\"y\":36.7577283416497},{\"x\":15,\"y\":36.7577283416497},{\"x\":16,\"y\":40.4350745619887},{\"x\":16,\"y\":40.4350745619887},{\"x\":17,\"y\":43.4634917818176},{\"x\":17,\"y\":43.4634917818176},{\"x\":17,\"y\":43.4634917818176},{\"x\":18,\"y\":46.885478946024},{\"x\":18,\"y\":46.885478946024},{\"x\":18,\"y\":46.885478946024},{\"x\":18,\"y\":46.885478946024},{\"x\":19,\"y\":50.7931517254206},{\"x\":19,\"y\":50.7931517254206},{\"x\":19,\"y\":50.7931517254206},{\"x\":20,\"y\":56.4912240928772},{\"x\":20,\"y\":56.4912240928772},{\"x\":20,\"y\":56.4912240928772},{\"x\":20,\"y\":56.4912240928772},{\"x\":20,\"y\":56.4912240928772},{\"x\":22,\"y\":67.5858242314313},{\"x\":23,\"y\":73.07969526937},{\"x\":24,\"y\":78.6431635543999},{\"x\":24,\"y\":78.6431635543999},{\"x\":24,\"y\":78.6431635543999},{\"x\":24,\"y\":78.6431635543999},{\"x\":25,\"y\":84.3286980968342}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":0,\"max\":25,\"tickAmount\":5,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":0,\"max\":120,\"tickAmount\":6,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"markers\":{\"size\":[6,0]},\"stroke\":{\"curve\":\"straight\"}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":4,\"max\":25},\"type\":\"scatter\",\"mixed_type\":\"scatter\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} # or directly apex(cars, aes(speed, dist), type = \"scatter\") %>% add_smooth_line() {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"dist\",\"type\":\"scatter\",\"data\":[{\"x\":4,\"y\":2},{\"x\":4,\"y\":10},{\"x\":7,\"y\":4},{\"x\":7,\"y\":22},{\"x\":8,\"y\":16},{\"x\":9,\"y\":10},{\"x\":10,\"y\":18},{\"x\":10,\"y\":26},{\"x\":10,\"y\":34},{\"x\":11,\"y\":17},{\"x\":11,\"y\":28},{\"x\":12,\"y\":14},{\"x\":12,\"y\":20},{\"x\":12,\"y\":24},{\"x\":12,\"y\":28},{\"x\":13,\"y\":26},{\"x\":13,\"y\":34},{\"x\":13,\"y\":34},{\"x\":13,\"y\":46},{\"x\":14,\"y\":26},{\"x\":14,\"y\":36},{\"x\":14,\"y\":60},{\"x\":14,\"y\":80},{\"x\":15,\"y\":20},{\"x\":15,\"y\":26},{\"x\":15,\"y\":54},{\"x\":16,\"y\":32},{\"x\":16,\"y\":40},{\"x\":17,\"y\":32},{\"x\":17,\"y\":40},{\"x\":17,\"y\":50},{\"x\":18,\"y\":42},{\"x\":18,\"y\":56},{\"x\":18,\"y\":76},{\"x\":18,\"y\":84},{\"x\":19,\"y\":36},{\"x\":19,\"y\":46},{\"x\":19,\"y\":68},{\"x\":20,\"y\":32},{\"x\":20,\"y\":48},{\"x\":20,\"y\":52},{\"x\":20,\"y\":56},{\"x\":20,\"y\":64},{\"x\":22,\"y\":66},{\"x\":23,\"y\":54},{\"x\":24,\"y\":70},{\"x\":24,\"y\":92},{\"x\":24,\"y\":93},{\"x\":24,\"y\":120},{\"x\":25,\"y\":85}]},{\"name\":\"smooth\",\"type\":\"line\",\"data\":[{\"x\":4,\"y\":-1.84945985401454},{\"x\":4.21212121212121,\"y\":-1.01531254147307},{\"x\":4.42424242424242,\"y\":-0.181165228931594},{\"x\":4.63636363636364,\"y\":0.652982083609881},{\"x\":4.84848484848485,\"y\":1.48712939615135},{\"x\":5.06060606060606,\"y\":2.32127670869282},{\"x\":5.27272727272727,\"y\":3.1554240212343},{\"x\":5.48484848484848,\"y\":3.98957133377577},{\"x\":5.6969696969697,\"y\":4.82371864631724},{\"x\":5.90909090909091,\"y\":5.65786595885871},{\"x\":6.12121212121212,\"y\":6.49201327140019},{\"x\":6.33333333333333,\"y\":7.32616058394166},{\"x\":6.54545454545454,\"y\":8.16030789648313},{\"x\":6.75757575757576,\"y\":8.9944552090246},{\"x\":6.96969696969697,\"y\":9.82860252156608},{\"x\":7.18181818181818,\"y\":10.6627498341075},{\"x\":7.39393939393939,\"y\":11.496897146649},{\"x\":7.60606060606061,\"y\":12.3310444591905},{\"x\":7.81818181818182,\"y\":13.165191771732},{\"x\":8.03030303030303,\"y\":13.9993390842734},{\"x\":8.24242424242424,\"y\":14.8334863968149},{\"x\":8.45454545454546,\"y\":15.6676337093564},{\"x\":8.66666666666667,\"y\":16.5017810218979},{\"x\":8.87878787878788,\"y\":17.3359283344393},{\"x\":9.09090909090909,\"y\":18.1700756469808},{\"x\":9.3030303030303,\"y\":19.0042229595223},{\"x\":9.51515151515152,\"y\":19.8383702720637},{\"x\":9.72727272727273,\"y\":20.6725175846052},{\"x\":9.93939393939394,\"y\":21.5066648971467},{\"x\":10.1515151515152,\"y\":22.3408122096882},{\"x\":10.3636363636364,\"y\":23.1749595222296},{\"x\":10.5757575757576,\"y\":24.0091068347711},{\"x\":10.7878787878788,\"y\":24.8432541473126},{\"x\":11,\"y\":25.6774014598541},{\"x\":11.2121212121212,\"y\":26.5115487723955},{\"x\":11.4242424242424,\"y\":27.345696084937},{\"x\":11.6363636363636,\"y\":28.1798433974785},{\"x\":11.8484848484848,\"y\":29.0139907100199},{\"x\":12.0606060606061,\"y\":29.8481380225614},{\"x\":12.2727272727273,\"y\":30.6822853351029},{\"x\":12.4848484848485,\"y\":31.5164326476444},{\"x\":12.6969696969697,\"y\":32.3505799601858},{\"x\":12.9090909090909,\"y\":33.1847272727273},{\"x\":13.1212121212121,\"y\":34.0188745852688},{\"x\":13.3333333333333,\"y\":34.8530218978103},{\"x\":13.5454545454545,\"y\":35.6871692103517},{\"x\":13.7575757575758,\"y\":36.5213165228932},{\"x\":13.969696969697,\"y\":37.3554638354347},{\"x\":14.1818181818182,\"y\":38.1896111479761},{\"x\":14.3939393939394,\"y\":39.0237584605176},{\"x\":14.6060606060606,\"y\":39.8579057730591},{\"x\":14.8181818181818,\"y\":40.6920530856006},{\"x\":15.030303030303,\"y\":41.526200398142},{\"x\":15.2424242424242,\"y\":42.3603477106835},{\"x\":15.4545454545455,\"y\":43.194495023225},{\"x\":15.6666666666667,\"y\":44.0286423357664},{\"x\":15.8787878787879,\"y\":44.8627896483079},{\"x\":16.0909090909091,\"y\":45.6969369608494},{\"x\":16.3030303030303,\"y\":46.5310842733909},{\"x\":16.5151515151515,\"y\":47.3652315859323},{\"x\":16.7272727272727,\"y\":48.1993788984738},{\"x\":16.9393939393939,\"y\":49.0335262110153},{\"x\":17.1515151515152,\"y\":49.8676735235568},{\"x\":17.3636363636364,\"y\":50.7018208360982},{\"x\":17.5757575757576,\"y\":51.5359681486397},{\"x\":17.7878787878788,\"y\":52.3701154611812},{\"x\":18,\"y\":53.2042627737226},{\"x\":18.2121212121212,\"y\":54.0384100862641},{\"x\":18.4242424242424,\"y\":54.8725573988056},{\"x\":18.6363636363636,\"y\":55.7067047113471},{\"x\":18.8484848484849,\"y\":56.5408520238885},{\"x\":19.0606060606061,\"y\":57.37499933643},{\"x\":19.2727272727273,\"y\":58.2091466489715},{\"x\":19.4848484848485,\"y\":59.043293961513},{\"x\":19.6969696969697,\"y\":59.8774412740544},{\"x\":19.9090909090909,\"y\":60.7115885865959},{\"x\":20.1212121212121,\"y\":61.5457358991374},{\"x\":20.3333333333333,\"y\":62.3798832116788},{\"x\":20.5454545454545,\"y\":63.2140305242203},{\"x\":20.7575757575758,\"y\":64.0481778367618},{\"x\":20.969696969697,\"y\":64.8823251493033},{\"x\":21.1818181818182,\"y\":65.7164724618447},{\"x\":21.3939393939394,\"y\":66.5506197743862},{\"x\":21.6060606060606,\"y\":67.3847670869277},{\"x\":21.8181818181818,\"y\":68.2189143994692},{\"x\":22.030303030303,\"y\":69.0530617120106},{\"x\":22.2424242424242,\"y\":69.8872090245521},{\"x\":22.4545454545455,\"y\":70.7213563370936},{\"x\":22.6666666666667,\"y\":71.555503649635},{\"x\":22.8787878787879,\"y\":72.3896509621765},{\"x\":23.0909090909091,\"y\":73.223798274718},{\"x\":23.3030303030303,\"y\":74.0579455872595},{\"x\":23.5151515151515,\"y\":74.8920928998009},{\"x\":23.7272727272727,\"y\":75.7262402123424},{\"x\":23.9393939393939,\"y\":76.5603875248839},{\"x\":24.1515151515152,\"y\":77.3945348374254},{\"x\":24.3636363636364,\"y\":78.2286821499668},{\"x\":24.5757575757576,\"y\":79.0628294625083},{\"x\":24.7878787878788,\"y\":79.8969767750498},{\"x\":25,\"y\":80.7311240875912}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":0,\"max\":25,\"tickAmount\":5,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":0,\"max\":120,\"tickAmount\":6,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"markers\":{\"size\":[6,0]},\"stroke\":{\"curve\":\"straight\"}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":4,\"max\":25},\"type\":\"scatter\",\"mixed_type\":\"scatter\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} apex(cars, aes(speed, dist), type = \"scatter\") %>% add_smooth_line(model = \"loess\", span = 1) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"dist\",\"type\":\"scatter\",\"data\":[{\"x\":4,\"y\":2},{\"x\":4,\"y\":10},{\"x\":7,\"y\":4},{\"x\":7,\"y\":22},{\"x\":8,\"y\":16},{\"x\":9,\"y\":10},{\"x\":10,\"y\":18},{\"x\":10,\"y\":26},{\"x\":10,\"y\":34},{\"x\":11,\"y\":17},{\"x\":11,\"y\":28},{\"x\":12,\"y\":14},{\"x\":12,\"y\":20},{\"x\":12,\"y\":24},{\"x\":12,\"y\":28},{\"x\":13,\"y\":26},{\"x\":13,\"y\":34},{\"x\":13,\"y\":34},{\"x\":13,\"y\":46},{\"x\":14,\"y\":26},{\"x\":14,\"y\":36},{\"x\":14,\"y\":60},{\"x\":14,\"y\":80},{\"x\":15,\"y\":20},{\"x\":15,\"y\":26},{\"x\":15,\"y\":54},{\"x\":16,\"y\":32},{\"x\":16,\"y\":40},{\"x\":17,\"y\":32},{\"x\":17,\"y\":40},{\"x\":17,\"y\":50},{\"x\":18,\"y\":42},{\"x\":18,\"y\":56},{\"x\":18,\"y\":76},{\"x\":18,\"y\":84},{\"x\":19,\"y\":36},{\"x\":19,\"y\":46},{\"x\":19,\"y\":68},{\"x\":20,\"y\":32},{\"x\":20,\"y\":48},{\"x\":20,\"y\":52},{\"x\":20,\"y\":56},{\"x\":20,\"y\":64},{\"x\":22,\"y\":66},{\"x\":23,\"y\":54},{\"x\":24,\"y\":70},{\"x\":24,\"y\":92},{\"x\":24,\"y\":93},{\"x\":24,\"y\":120},{\"x\":25,\"y\":85}]},{\"name\":\"smooth\",\"type\":\"line\",\"data\":[{\"x\":4,\"y\":4.0685016540788},{\"x\":4.21212121212121,\"y\":4.68877987143089},{\"x\":4.42424242424242,\"y\":5.31231787956292},{\"x\":4.63636363636364,\"y\":5.93911334291864},{\"x\":4.84848484848485,\"y\":6.56916392594181},{\"x\":5.06060606060606,\"y\":7.2024672930762},{\"x\":5.27272727272727,\"y\":7.83902110876555},{\"x\":5.48484848484848,\"y\":8.47882303745364},{\"x\":5.6969696969697,\"y\":9.12187074358422},{\"x\":5.90909090909091,\"y\":9.76816189160105},{\"x\":6.12121212121212,\"y\":10.4176941459479},{\"x\":6.33333333333333,\"y\":11.0704651710685},{\"x\":6.54545454545454,\"y\":11.7264726314066},{\"x\":6.75757575757576,\"y\":12.3857141914061},{\"x\":6.96969696969697,\"y\":13.0481875155105},{\"x\":7.18181818181818,\"y\":13.7138902681638},{\"x\":7.39393939393939,\"y\":14.3828201138097},{\"x\":7.60606060606061,\"y\":15.0549747168919},{\"x\":7.81818181818182,\"y\":15.7303517418542},{\"x\":8.03030303030303,\"y\":16.4089488531403},{\"x\":8.24242424242424,\"y\":17.090763715194},{\"x\":8.45454545454546,\"y\":17.7757939924591},{\"x\":8.66666666666667,\"y\":18.4640373493794},{\"x\":8.87878787878788,\"y\":19.1554914503985},{\"x\":9.09090909090909,\"y\":19.8501539599603},{\"x\":9.3030303030303,\"y\":20.5480225425084},{\"x\":9.51515151515152,\"y\":21.2490948624868},{\"x\":9.72727272727273,\"y\":21.9533685843391},{\"x\":9.93939393939394,\"y\":22.660841372509},{\"x\":10.1515151515152,\"y\":23.3726100962513},{\"x\":10.3636363636364,\"y\":24.0911418356318},{\"x\":10.5757575757576,\"y\":24.8154735098079},{\"x\":10.7878787878788,\"y\":25.5444504876764},{\"x\":11,\"y\":26.2769181381343},{\"x\":11.2121212121212,\"y\":27.0117218300786},{\"x\":11.4242424242424,\"y\":27.7477069324064},{\"x\":11.6363636363636,\"y\":28.4837188140145},{\"x\":11.8484848484848,\"y\":29.2186028437999},{\"x\":12.0606060606061,\"y\":29.9526531565294},{\"x\":12.2727272727273,\"y\":30.7082273074336},{\"x\":12.4848484848485,\"y\":31.4883136286001},{\"x\":12.6969696969697,\"y\":32.2863891762583},{\"x\":12.9090909090909,\"y\":33.0959310066377},{\"x\":13.1212121212121,\"y\":33.9104161759679},{\"x\":13.3333333333333,\"y\":34.7233217404784},{\"x\":13.5454545454545,\"y\":35.5281247563986},{\"x\":13.7575757575758,\"y\":36.3183022799581},{\"x\":13.969696969697,\"y\":37.0873313673863},{\"x\":14.1818181818182,\"y\":37.7950490636592},{\"x\":14.3939393939394,\"y\":38.4155445575487},{\"x\":14.6060606060606,\"y\":39.006571620158},{\"x\":14.8181818181818,\"y\":39.6270410310323},{\"x\":15.030303030303,\"y\":40.3335517447854},{\"x\":15.2424242424242,\"y\":41.0357020846508},{\"x\":15.4545454545455,\"y\":41.6757534926082},{\"x\":15.6666666666667,\"y\":42.2745293444294},{\"x\":15.8787878787879,\"y\":42.8528530158861},{\"x\":16.0909090909091,\"y\":43.4315478827501},{\"x\":16.3030303030303,\"y\":44.031437320793},{\"x\":16.5151515151515,\"y\":44.6733447057866},{\"x\":16.7272727272727,\"y\":45.3780934135027},{\"x\":16.9393939393939,\"y\":46.1665068197129},{\"x\":17.1515151515152,\"y\":47.0290104989985},{\"x\":17.3636363636364,\"y\":47.8943741260785},{\"x\":17.5757575757576,\"y\":48.7621326144198},{\"x\":17.7878787878788,\"y\":49.6364579765197},{\"x\":18,\"y\":50.5215222248755},{\"x\":18.2121212121212,\"y\":51.4214973719844},{\"x\":18.4242424242424,\"y\":52.3405554303438},{\"x\":18.6363636363636,\"y\":53.2828684124508},{\"x\":18.8484848484849,\"y\":54.2526083308027},{\"x\":19.0606060606061,\"y\":55.252982143021},{\"x\":19.2727272727273,\"y\":56.2705630673721},{\"x\":19.4848484848485,\"y\":57.3003312794199},{\"x\":19.6969696969697,\"y\":58.3430048447321},{\"x\":19.9090909090909,\"y\":59.3993018288762},{\"x\":20.1212121212121,\"y\":60.4699402974199},{\"x\":20.3333333333333,\"y\":61.5556383159307},{\"x\":20.5454545454545,\"y\":62.6571139499763},{\"x\":20.7575757575758,\"y\":63.7750852651242},{\"x\":20.969696969697,\"y\":64.910270326942},{\"x\":21.1818181818182,\"y\":66.0633872009973},{\"x\":21.3939393939394,\"y\":67.2351539528577},{\"x\":21.6060606060606,\"y\":68.4262886480909},{\"x\":21.8181818181818,\"y\":69.6375093522643},{\"x\":22.030303030303,\"y\":70.8695511931225},{\"x\":22.2424242424242,\"y\":72.1238873507672},{\"x\":22.4545454545455,\"y\":73.400698488684},{\"x\":22.6666666666667,\"y\":74.699390337978},{\"x\":22.8787878787879,\"y\":76.0193686297541},{\"x\":23.0909090909091,\"y\":77.3600390951174},{\"x\":23.3030303030303,\"y\":78.7208074651729},{\"x\":23.5151515151515,\"y\":80.1010794710256},{\"x\":23.7272727272727,\"y\":81.5002608437805},{\"x\":23.9393939393939,\"y\":82.9177573145426},{\"x\":24.1515151515152,\"y\":84.3529746144169},{\"x\":24.3636363636364,\"y\":85.8053184745084},{\"x\":24.5757575757576,\"y\":87.2741946259222},{\"x\":24.7878787878788,\"y\":88.7590087997632},{\"x\":25,\"y\":90.2591667271365}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":0,\"max\":25,\"tickAmount\":5,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":0,\"max\":120,\"tickAmount\":6,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"markers\":{\"size\":[6,0]},\"stroke\":{\"curve\":\"straight\"}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":4,\"max\":25},\"type\":\"scatter\",\"mixed_type\":\"scatter\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} apex(cars, aes(speed, dist), type = \"scatter\") %>% add_smooth_line(model = \"loess\", degree = 1) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"dist\",\"type\":\"scatter\",\"data\":[{\"x\":4,\"y\":2},{\"x\":4,\"y\":10},{\"x\":7,\"y\":4},{\"x\":7,\"y\":22},{\"x\":8,\"y\":16},{\"x\":9,\"y\":10},{\"x\":10,\"y\":18},{\"x\":10,\"y\":26},{\"x\":10,\"y\":34},{\"x\":11,\"y\":17},{\"x\":11,\"y\":28},{\"x\":12,\"y\":14},{\"x\":12,\"y\":20},{\"x\":12,\"y\":24},{\"x\":12,\"y\":28},{\"x\":13,\"y\":26},{\"x\":13,\"y\":34},{\"x\":13,\"y\":34},{\"x\":13,\"y\":46},{\"x\":14,\"y\":26},{\"x\":14,\"y\":36},{\"x\":14,\"y\":60},{\"x\":14,\"y\":80},{\"x\":15,\"y\":20},{\"x\":15,\"y\":26},{\"x\":15,\"y\":54},{\"x\":16,\"y\":32},{\"x\":16,\"y\":40},{\"x\":17,\"y\":32},{\"x\":17,\"y\":40},{\"x\":17,\"y\":50},{\"x\":18,\"y\":42},{\"x\":18,\"y\":56},{\"x\":18,\"y\":76},{\"x\":18,\"y\":84},{\"x\":19,\"y\":36},{\"x\":19,\"y\":46},{\"x\":19,\"y\":68},{\"x\":20,\"y\":32},{\"x\":20,\"y\":48},{\"x\":20,\"y\":52},{\"x\":20,\"y\":56},{\"x\":20,\"y\":64},{\"x\":22,\"y\":66},{\"x\":23,\"y\":54},{\"x\":24,\"y\":70},{\"x\":24,\"y\":92},{\"x\":24,\"y\":93},{\"x\":24,\"y\":120},{\"x\":25,\"y\":85}]},{\"name\":\"smooth\",\"type\":\"line\",\"data\":[{\"x\":4,\"y\":3.27234011670776},{\"x\":4.21212121212121,\"y\":3.95644616944287},{\"x\":4.42424242424242,\"y\":4.63532899156682},{\"x\":4.63636363636364,\"y\":5.30978514143677},{\"x\":4.84848484848485,\"y\":5.98061117740985},{\"x\":5.06060606060606,\"y\":6.6486036578432},{\"x\":5.27272727272727,\"y\":7.31455914109397},{\"x\":5.48484848484848,\"y\":7.97927418551929},{\"x\":5.6969696969697,\"y\":8.64354534947632},{\"x\":5.90909090909091,\"y\":9.30816919132219},{\"x\":6.12121212121212,\"y\":9.97394226941403},{\"x\":6.33333333333333,\"y\":10.641661142109},{\"x\":6.54545454545454,\"y\":11.3121223677642},{\"x\":6.75757575757576,\"y\":11.9861225047369},{\"x\":6.96969696969697,\"y\":12.6644581113841},{\"x\":7.18181818181818,\"y\":13.347925746063},{\"x\":7.39393939393939,\"y\":14.0373219671307},{\"x\":7.60606060606061,\"y\":14.7334433329444},{\"x\":7.81818181818182,\"y\":15.4370864018612},{\"x\":8.03030303030303,\"y\":16.1486440935141},{\"x\":8.24242424242424,\"y\":16.8457288923785},{\"x\":8.45454545454546,\"y\":17.5204028499358},{\"x\":8.66666666666667,\"y\":18.1800678239065},{\"x\":8.87878787878788,\"y\":18.8321256720113},{\"x\":9.09090909090909,\"y\":19.483978251971},{\"x\":9.3030303030303,\"y\":20.143027421506},{\"x\":9.51515151515152,\"y\":20.8166750383372},{\"x\":9.72727272727273,\"y\":21.5123229601851},{\"x\":9.93939393939394,\"y\":22.2373730447705},{\"x\":10.1515151515152,\"y\":22.9826724795548},{\"x\":10.3636363636364,\"y\":23.7095350120756},{\"x\":10.5757575757576,\"y\":24.4219137953279},{\"x\":10.7878787878788,\"y\":25.1263996956519},{\"x\":11,\"y\":25.8295835793876},{\"x\":11.2121212121212,\"y\":26.5380563128753},{\"x\":11.4242424242424,\"y\":27.2584087624552},{\"x\":11.6363636363636,\"y\":27.9972317944672},{\"x\":11.8484848484848,\"y\":28.7611162752517},{\"x\":12.0606060606061,\"y\":29.5533803461642},{\"x\":12.2727272727273,\"y\":30.3279935535284},{\"x\":12.4848484848485,\"y\":31.0838221957963},{\"x\":12.6969696969697,\"y\":31.8413701846607},{\"x\":12.9090909090909,\"y\":32.6211414318142},{\"x\":13.1212121212121,\"y\":33.4329065758253},{\"x\":13.3333333333333,\"y\":34.2420210596529},{\"x\":13.5454545454545,\"y\":35.0484000529875},{\"x\":13.7575757575758,\"y\":35.8575366776771},{\"x\":13.969696969697,\"y\":36.6749240555696},{\"x\":14.1818181818182,\"y\":37.5417837786392},{\"x\":14.3939393939394,\"y\":38.4871816381959},{\"x\":14.6060606060606,\"y\":39.4535120845513},{\"x\":14.8181818181818,\"y\":40.3819583694584},{\"x\":15.030303030303,\"y\":41.2145308270968},{\"x\":15.2424242424242,\"y\":41.9579853476428},{\"x\":15.4545454545455,\"y\":42.6442351109227},{\"x\":15.6666666666667,\"y\":43.2839236727686},{\"x\":15.8787878787879,\"y\":43.8876945890122},{\"x\":16.0909090909091,\"y\":44.4661914154855},{\"x\":16.3030303030303,\"y\":45.0300577080204},{\"x\":16.5151515151515,\"y\":45.5899370224487},{\"x\":16.7272727272727,\"y\":46.1564729146023},{\"x\":16.9393939393939,\"y\":46.7403089403132},{\"x\":17.1515151515152,\"y\":47.358859114227},{\"x\":17.3636363636364,\"y\":48.0320169938337},{\"x\":17.5757575757576,\"y\":48.7525054170305},{\"x\":17.7878787878788,\"y\":49.5117018242857},{\"x\":18,\"y\":50.3009836560678},{\"x\":18.2121212121212,\"y\":51.1117283528451},{\"x\":18.4242424242424,\"y\":51.935313355086},{\"x\":18.6363636363636,\"y\":52.7631161032589},{\"x\":18.8484848484849,\"y\":53.5865140378322},{\"x\":19.0606060606061,\"y\":54.4026012047354},{\"x\":19.2727272727273,\"y\":55.2998639507359},{\"x\":19.4848484848485,\"y\":56.3004185905952},{\"x\":19.6969696969697,\"y\":57.3901889086749},{\"x\":19.9090909090909,\"y\":58.5550986893366},{\"x\":20.1212121212121,\"y\":59.7810717169417},{\"x\":20.3333333333333,\"y\":61.0540317758518},{\"x\":20.5454545454545,\"y\":62.3599026504283},{\"x\":20.7575757575758,\"y\":63.6846081250328},{\"x\":20.969696969697,\"y\":65.0140719840269},{\"x\":21.1818181818182,\"y\":66.3342180117719},{\"x\":21.3939393939394,\"y\":67.6309699926295},{\"x\":21.6060606060606,\"y\":68.8902517109612},{\"x\":21.8181818181818,\"y\":70.0979869511285},{\"x\":22.030303030303,\"y\":71.2411695790394},{\"x\":22.2424242424242,\"y\":72.3733979324719},{\"x\":22.4545454545455,\"y\":73.5287920346029},{\"x\":22.6666666666667,\"y\":74.7042987361594},{\"x\":22.8787878787879,\"y\":75.8968648878687},{\"x\":23.0909090909091,\"y\":77.1034373404579},{\"x\":23.3030303030303,\"y\":78.3209629446543},{\"x\":23.5151515151515,\"y\":79.546388551185},{\"x\":23.7272727272727,\"y\":80.7766610107772},{\"x\":23.9393939393939,\"y\":82.008727174158},{\"x\":24.1515151515152,\"y\":83.2395338920548},{\"x\":24.3636363636364,\"y\":84.4660280151945},{\"x\":24.5757575757576,\"y\":85.6851563943045},{\"x\":24.7878787878788,\"y\":86.8938658801118},{\"x\":25,\"y\":88.0891033233437}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":0,\"max\":25,\"tickAmount\":5,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":0,\"max\":120,\"tickAmount\":6,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"markers\":{\"size\":[6,0]},\"stroke\":{\"curve\":\"straight\"}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":4,\"max\":25},\"type\":\"scatter\",\"mixed_type\":\"scatter\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} apex(cars, aes(speed, dist), type = \"scatter\") %>% add_smooth_line(formula = y ~ poly(x, 2)) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"dist\",\"type\":\"scatter\",\"data\":[{\"x\":4,\"y\":2},{\"x\":4,\"y\":10},{\"x\":7,\"y\":4},{\"x\":7,\"y\":22},{\"x\":8,\"y\":16},{\"x\":9,\"y\":10},{\"x\":10,\"y\":18},{\"x\":10,\"y\":26},{\"x\":10,\"y\":34},{\"x\":11,\"y\":17},{\"x\":11,\"y\":28},{\"x\":12,\"y\":14},{\"x\":12,\"y\":20},{\"x\":12,\"y\":24},{\"x\":12,\"y\":28},{\"x\":13,\"y\":26},{\"x\":13,\"y\":34},{\"x\":13,\"y\":34},{\"x\":13,\"y\":46},{\"x\":14,\"y\":26},{\"x\":14,\"y\":36},{\"x\":14,\"y\":60},{\"x\":14,\"y\":80},{\"x\":15,\"y\":20},{\"x\":15,\"y\":26},{\"x\":15,\"y\":54},{\"x\":16,\"y\":32},{\"x\":16,\"y\":40},{\"x\":17,\"y\":32},{\"x\":17,\"y\":40},{\"x\":17,\"y\":50},{\"x\":18,\"y\":42},{\"x\":18,\"y\":56},{\"x\":18,\"y\":76},{\"x\":18,\"y\":84},{\"x\":19,\"y\":36},{\"x\":19,\"y\":46},{\"x\":19,\"y\":68},{\"x\":20,\"y\":32},{\"x\":20,\"y\":48},{\"x\":20,\"y\":52},{\"x\":20,\"y\":56},{\"x\":20,\"y\":64},{\"x\":22,\"y\":66},{\"x\":23,\"y\":54},{\"x\":24,\"y\":70},{\"x\":24,\"y\":92},{\"x\":24,\"y\":93},{\"x\":24,\"y\":120},{\"x\":25,\"y\":85}]},{\"name\":\"smooth\",\"type\":\"line\",\"data\":[{\"x\":4,\"y\":7.72263707515413},{\"x\":4.21212121212121,\"y\":8.0904903670885},{\"x\":4.42424242424242,\"y\":8.46733907830924},{\"x\":4.63636363636364,\"y\":8.85318320881633},{\"x\":4.84848484848485,\"y\":9.24802275860978},{\"x\":5.06060606060606,\"y\":9.65185772768959},{\"x\":5.27272727272727,\"y\":10.0646881160557},{\"x\":5.48484848484848,\"y\":10.4865139237083},{\"x\":5.6969696969697,\"y\":10.9173351506472},{\"x\":5.90909090909091,\"y\":11.3571517968724},{\"x\":6.12121212121212,\"y\":11.805963862384},{\"x\":6.33333333333333,\"y\":12.263771347182},{\"x\":6.54545454545454,\"y\":12.7305742512663},{\"x\":6.75757575757576,\"y\":13.2063725746369},{\"x\":6.96969696969697,\"y\":13.691166317294},{\"x\":7.18181818181818,\"y\":14.1849554792374},{\"x\":7.39393939393939,\"y\":14.6877400604671},{\"x\":7.60606060606061,\"y\":15.1995200609832},{\"x\":7.81818181818182,\"y\":15.7202954807857},{\"x\":8.03030303030303,\"y\":16.2500663198745},{\"x\":8.24242424242424,\"y\":16.7888325782497},{\"x\":8.45454545454546,\"y\":17.3365942559113},{\"x\":8.66666666666667,\"y\":17.8933513528592},{\"x\":8.87878787878788,\"y\":18.4591038690935},{\"x\":9.09090909090909,\"y\":19.0338518046141},{\"x\":9.3030303030303,\"y\":19.6175951594211},{\"x\":9.51515151515152,\"y\":20.2103339335144},{\"x\":9.72727272727273,\"y\":20.8120681268941},{\"x\":9.93939393939394,\"y\":21.4227977395602},{\"x\":10.1515151515152,\"y\":22.0425227715126},{\"x\":10.3636363636364,\"y\":22.6712432227514},{\"x\":10.5757575757576,\"y\":23.3089590932765},{\"x\":10.7878787878788,\"y\":23.955670383088},{\"x\":11,\"y\":24.6113770921858},{\"x\":11.2121212121212,\"y\":25.27607922057},{\"x\":11.4242424242424,\"y\":25.9497767682406},{\"x\":11.6363636363636,\"y\":26.6324697351975},{\"x\":11.8484848484848,\"y\":27.3241581214408},{\"x\":12.0606060606061,\"y\":28.0248419269705},{\"x\":12.2727272727273,\"y\":28.7345211517865},{\"x\":12.4848484848485,\"y\":29.4531957958888},{\"x\":12.6969696969697,\"y\":30.1808658592776},{\"x\":12.9090909090909,\"y\":30.9175313419526},{\"x\":13.1212121212121,\"y\":31.6631922439141},{\"x\":13.3333333333333,\"y\":32.4178485651619},{\"x\":13.5454545454545,\"y\":33.181500305696},{\"x\":13.7575757575758,\"y\":33.9541474655166},{\"x\":13.969696969697,\"y\":34.7357900446234},{\"x\":14.1818181818182,\"y\":35.5264280430167},{\"x\":14.3939393939394,\"y\":36.3260614606963},{\"x\":14.6060606060606,\"y\":37.1346902976622},{\"x\":14.8181818181818,\"y\":37.9523145539145},{\"x\":15.030303030303,\"y\":38.7789342294532},{\"x\":15.2424242424242,\"y\":39.6145493242782},{\"x\":15.4545454545455,\"y\":40.4591598383896},{\"x\":15.6666666666667,\"y\":41.3127657717874},{\"x\":15.8787878787879,\"y\":42.1753671244715},{\"x\":16.0909090909091,\"y\":43.0469638964419},{\"x\":16.3030303030303,\"y\":43.9275560876988},{\"x\":16.5151515151515,\"y\":44.8171436982419},{\"x\":16.7272727272727,\"y\":45.7157267280715},{\"x\":16.9393939393939,\"y\":46.6233051771874},{\"x\":17.1515151515152,\"y\":47.5398790455896},{\"x\":17.3636363636364,\"y\":48.4654483332782},{\"x\":17.5757575757576,\"y\":49.4000130402532},{\"x\":17.7878787878788,\"y\":50.3435731665146},{\"x\":18,\"y\":51.2961287120622},{\"x\":18.2121212121212,\"y\":52.2576796768963},{\"x\":18.4242424242424,\"y\":53.2282260610167},{\"x\":18.6363636363636,\"y\":54.2077678644235},{\"x\":18.8484848484849,\"y\":55.1963050871166},{\"x\":19.0606060606061,\"y\":56.1938377290961},{\"x\":19.2727272727273,\"y\":57.2003657903619},{\"x\":19.4848484848485,\"y\":58.2158892709141},{\"x\":19.6969696969697,\"y\":59.2404081707527},{\"x\":19.9090909090909,\"y\":60.2739224898776},{\"x\":20.1212121212121,\"y\":61.3164322282889},{\"x\":20.3333333333333,\"y\":62.3679373859865},{\"x\":20.5454545454545,\"y\":63.4284379629705},{\"x\":20.7575757575758,\"y\":64.4979339592409},{\"x\":20.969696969697,\"y\":65.5764253747976},{\"x\":21.1818181818182,\"y\":66.6639122096407},{\"x\":21.3939393939394,\"y\":67.7603944637701},{\"x\":21.6060606060606,\"y\":68.8658721371859},{\"x\":21.8181818181818,\"y\":69.9803452298881},{\"x\":22.030303030303,\"y\":71.1038137418766},{\"x\":22.2424242424242,\"y\":72.2362776731514},{\"x\":22.4545454545455,\"y\":73.3777370237127},{\"x\":22.6666666666667,\"y\":74.5281917935602},{\"x\":22.8787878787879,\"y\":75.6876419826942},{\"x\":23.0909090909091,\"y\":76.8560875911145},{\"x\":23.3030303030303,\"y\":78.0335286188211},{\"x\":23.5151515151515,\"y\":79.2199650658142},{\"x\":23.7272727272727,\"y\":80.4153969320935},{\"x\":23.9393939393939,\"y\":81.6198242176593},{\"x\":24.1515151515152,\"y\":82.8332469225114},{\"x\":24.3636363636364,\"y\":84.0556650466498},{\"x\":24.5757575757576,\"y\":85.2870785900747},{\"x\":24.7878787878788,\"y\":86.5274875527858},{\"x\":25,\"y\":87.7768919347834}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":0,\"max\":25,\"tickAmount\":5,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":0,\"max\":120,\"tickAmount\":6,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"markers\":{\"size\":[6,0]},\"stroke\":{\"curve\":\"straight\"}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":4,\"max\":25},\"type\":\"scatter\",\"mixed_type\":\"scatter\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} apex(cars, aes(speed, dist), type = \"scatter\") %>% add_smooth_line(model = \"lm\", serie_name = \"lm\") %>% add_smooth_line(model = \"loess\", serie_name = \"loess\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"dist\",\"type\":\"scatter\",\"data\":[{\"x\":4,\"y\":2},{\"x\":4,\"y\":10},{\"x\":7,\"y\":4},{\"x\":7,\"y\":22},{\"x\":8,\"y\":16},{\"x\":9,\"y\":10},{\"x\":10,\"y\":18},{\"x\":10,\"y\":26},{\"x\":10,\"y\":34},{\"x\":11,\"y\":17},{\"x\":11,\"y\":28},{\"x\":12,\"y\":14},{\"x\":12,\"y\":20},{\"x\":12,\"y\":24},{\"x\":12,\"y\":28},{\"x\":13,\"y\":26},{\"x\":13,\"y\":34},{\"x\":13,\"y\":34},{\"x\":13,\"y\":46},{\"x\":14,\"y\":26},{\"x\":14,\"y\":36},{\"x\":14,\"y\":60},{\"x\":14,\"y\":80},{\"x\":15,\"y\":20},{\"x\":15,\"y\":26},{\"x\":15,\"y\":54},{\"x\":16,\"y\":32},{\"x\":16,\"y\":40},{\"x\":17,\"y\":32},{\"x\":17,\"y\":40},{\"x\":17,\"y\":50},{\"x\":18,\"y\":42},{\"x\":18,\"y\":56},{\"x\":18,\"y\":76},{\"x\":18,\"y\":84},{\"x\":19,\"y\":36},{\"x\":19,\"y\":46},{\"x\":19,\"y\":68},{\"x\":20,\"y\":32},{\"x\":20,\"y\":48},{\"x\":20,\"y\":52},{\"x\":20,\"y\":56},{\"x\":20,\"y\":64},{\"x\":22,\"y\":66},{\"x\":23,\"y\":54},{\"x\":24,\"y\":70},{\"x\":24,\"y\":92},{\"x\":24,\"y\":93},{\"x\":24,\"y\":120},{\"x\":25,\"y\":85}]},{\"name\":\"lm\",\"type\":\"line\",\"data\":[{\"x\":4,\"y\":-1.84945985401454},{\"x\":4.21212121212121,\"y\":-1.01531254147307},{\"x\":4.42424242424242,\"y\":-0.181165228931594},{\"x\":4.63636363636364,\"y\":0.652982083609881},{\"x\":4.84848484848485,\"y\":1.48712939615135},{\"x\":5.06060606060606,\"y\":2.32127670869282},{\"x\":5.27272727272727,\"y\":3.1554240212343},{\"x\":5.48484848484848,\"y\":3.98957133377577},{\"x\":5.6969696969697,\"y\":4.82371864631724},{\"x\":5.90909090909091,\"y\":5.65786595885871},{\"x\":6.12121212121212,\"y\":6.49201327140019},{\"x\":6.33333333333333,\"y\":7.32616058394166},{\"x\":6.54545454545454,\"y\":8.16030789648313},{\"x\":6.75757575757576,\"y\":8.9944552090246},{\"x\":6.96969696969697,\"y\":9.82860252156608},{\"x\":7.18181818181818,\"y\":10.6627498341075},{\"x\":7.39393939393939,\"y\":11.496897146649},{\"x\":7.60606060606061,\"y\":12.3310444591905},{\"x\":7.81818181818182,\"y\":13.165191771732},{\"x\":8.03030303030303,\"y\":13.9993390842734},{\"x\":8.24242424242424,\"y\":14.8334863968149},{\"x\":8.45454545454546,\"y\":15.6676337093564},{\"x\":8.66666666666667,\"y\":16.5017810218979},{\"x\":8.87878787878788,\"y\":17.3359283344393},{\"x\":9.09090909090909,\"y\":18.1700756469808},{\"x\":9.3030303030303,\"y\":19.0042229595223},{\"x\":9.51515151515152,\"y\":19.8383702720637},{\"x\":9.72727272727273,\"y\":20.6725175846052},{\"x\":9.93939393939394,\"y\":21.5066648971467},{\"x\":10.1515151515152,\"y\":22.3408122096882},{\"x\":10.3636363636364,\"y\":23.1749595222296},{\"x\":10.5757575757576,\"y\":24.0091068347711},{\"x\":10.7878787878788,\"y\":24.8432541473126},{\"x\":11,\"y\":25.6774014598541},{\"x\":11.2121212121212,\"y\":26.5115487723955},{\"x\":11.4242424242424,\"y\":27.345696084937},{\"x\":11.6363636363636,\"y\":28.1798433974785},{\"x\":11.8484848484848,\"y\":29.0139907100199},{\"x\":12.0606060606061,\"y\":29.8481380225614},{\"x\":12.2727272727273,\"y\":30.6822853351029},{\"x\":12.4848484848485,\"y\":31.5164326476444},{\"x\":12.6969696969697,\"y\":32.3505799601858},{\"x\":12.9090909090909,\"y\":33.1847272727273},{\"x\":13.1212121212121,\"y\":34.0188745852688},{\"x\":13.3333333333333,\"y\":34.8530218978103},{\"x\":13.5454545454545,\"y\":35.6871692103517},{\"x\":13.7575757575758,\"y\":36.5213165228932},{\"x\":13.969696969697,\"y\":37.3554638354347},{\"x\":14.1818181818182,\"y\":38.1896111479761},{\"x\":14.3939393939394,\"y\":39.0237584605176},{\"x\":14.6060606060606,\"y\":39.8579057730591},{\"x\":14.8181818181818,\"y\":40.6920530856006},{\"x\":15.030303030303,\"y\":41.526200398142},{\"x\":15.2424242424242,\"y\":42.3603477106835},{\"x\":15.4545454545455,\"y\":43.194495023225},{\"x\":15.6666666666667,\"y\":44.0286423357664},{\"x\":15.8787878787879,\"y\":44.8627896483079},{\"x\":16.0909090909091,\"y\":45.6969369608494},{\"x\":16.3030303030303,\"y\":46.5310842733909},{\"x\":16.5151515151515,\"y\":47.3652315859323},{\"x\":16.7272727272727,\"y\":48.1993788984738},{\"x\":16.9393939393939,\"y\":49.0335262110153},{\"x\":17.1515151515152,\"y\":49.8676735235568},{\"x\":17.3636363636364,\"y\":50.7018208360982},{\"x\":17.5757575757576,\"y\":51.5359681486397},{\"x\":17.7878787878788,\"y\":52.3701154611812},{\"x\":18,\"y\":53.2042627737226},{\"x\":18.2121212121212,\"y\":54.0384100862641},{\"x\":18.4242424242424,\"y\":54.8725573988056},{\"x\":18.6363636363636,\"y\":55.7067047113471},{\"x\":18.8484848484849,\"y\":56.5408520238885},{\"x\":19.0606060606061,\"y\":57.37499933643},{\"x\":19.2727272727273,\"y\":58.2091466489715},{\"x\":19.4848484848485,\"y\":59.043293961513},{\"x\":19.6969696969697,\"y\":59.8774412740544},{\"x\":19.9090909090909,\"y\":60.7115885865959},{\"x\":20.1212121212121,\"y\":61.5457358991374},{\"x\":20.3333333333333,\"y\":62.3798832116788},{\"x\":20.5454545454545,\"y\":63.2140305242203},{\"x\":20.7575757575758,\"y\":64.0481778367618},{\"x\":20.969696969697,\"y\":64.8823251493033},{\"x\":21.1818181818182,\"y\":65.7164724618447},{\"x\":21.3939393939394,\"y\":66.5506197743862},{\"x\":21.6060606060606,\"y\":67.3847670869277},{\"x\":21.8181818181818,\"y\":68.2189143994692},{\"x\":22.030303030303,\"y\":69.0530617120106},{\"x\":22.2424242424242,\"y\":69.8872090245521},{\"x\":22.4545454545455,\"y\":70.7213563370936},{\"x\":22.6666666666667,\"y\":71.555503649635},{\"x\":22.8787878787879,\"y\":72.3896509621765},{\"x\":23.0909090909091,\"y\":73.223798274718},{\"x\":23.3030303030303,\"y\":74.0579455872595},{\"x\":23.5151515151515,\"y\":74.8920928998009},{\"x\":23.7272727272727,\"y\":75.7262402123424},{\"x\":23.9393939393939,\"y\":76.5603875248839},{\"x\":24.1515151515152,\"y\":77.3945348374254},{\"x\":24.3636363636364,\"y\":78.2286821499668},{\"x\":24.5757575757576,\"y\":79.0628294625083},{\"x\":24.7878787878788,\"y\":79.8969767750498},{\"x\":25,\"y\":80.7311240875912}]},{\"name\":\"loess\",\"type\":\"line\",\"data\":[{\"x\":4,\"y\":5.89362799029165},{\"x\":4.21212121212121,\"y\":6.27184346527173},{\"x\":4.42424242424242,\"y\":6.66392146206721},{\"x\":4.63636363636364,\"y\":7.06977889431491},{\"x\":4.84848484848485,\"y\":7.48933267565164},{\"x\":5.06060606060606,\"y\":7.92249971971422},{\"x\":5.27272727272727,\"y\":8.36919694013946},{\"x\":5.48484848484848,\"y\":8.82934125056419},{\"x\":5.6969696969697,\"y\":9.30284956462521},{\"x\":5.90909090909091,\"y\":9.78963879595934},{\"x\":6.12121212121212,\"y\":10.2896258582034},{\"x\":6.33333333333333,\"y\":10.8027276649942},{\"x\":6.54545454545454,\"y\":11.3288611299686},{\"x\":6.75757575757576,\"y\":11.8679431667633},{\"x\":6.96969696969697,\"y\":12.4198906890152},{\"x\":7.18181818181818,\"y\":12.9846206103612},{\"x\":7.39393939393939,\"y\":13.5620498444379},{\"x\":7.60606060606061,\"y\":14.1520953048823},{\"x\":7.81818181818182,\"y\":14.7546739053312},{\"x\":8.03030303030303,\"y\":15.3698542114218},{\"x\":8.24242424242424,\"y\":16.0060830475401},{\"x\":8.45454545454546,\"y\":16.6658308273076},{\"x\":8.66666666666667,\"y\":17.3457030078592},{\"x\":8.87878787878788,\"y\":18.04230504633},{\"x\":9.09090909090909,\"y\":18.7522423998549},{\"x\":9.3030303030303,\"y\":19.472120525569},{\"x\":9.51515151515152,\"y\":20.1985448806073},{\"x\":9.72727272727273,\"y\":20.9281209221047},{\"x\":9.93939393939394,\"y\":21.6574541071963},{\"x\":10.1515151515152,\"y\":22.3909992176321},{\"x\":10.3636363636364,\"y\":23.1468086589726},{\"x\":10.5757575757576,\"y\":23.9223063887743},{\"x\":10.7878787878788,\"y\":24.7136544396687},{\"x\":11,\"y\":25.5170148442874},{\"x\":11.2121212121212,\"y\":26.3285496352619},{\"x\":11.4242424242424,\"y\":27.1444208452239},{\"x\":11.6363636363636,\"y\":27.9607905068049},{\"x\":11.8484848484848,\"y\":28.7738206526363},{\"x\":12.0606060606061,\"y\":29.5806727283116},{\"x\":12.2727272727273,\"y\":30.3946689534406},{\"x\":12.4848484848485,\"y\":31.2179530534194},{\"x\":12.6969696969697,\"y\":32.0463978280013},{\"x\":12.9090909090909,\"y\":32.8758760769393},{\"x\":13.1212121212121,\"y\":33.70440747121},{\"x\":13.3333333333333,\"y\":34.5381680435654},{\"x\":13.5454545454545,\"y\":35.3754350511144},{\"x\":13.7575757575758,\"y\":36.2133159309227},{\"x\":13.969696969697,\"y\":37.0489181200559},{\"x\":14.1818181818182,\"y\":37.8973531514232},{\"x\":14.3939393939394,\"y\":38.7733405868291},{\"x\":14.6060606060606,\"y\":39.65213187697},{\"x\":14.8181818181818,\"y\":40.5084020580861},{\"x\":15.030303030303,\"y\":41.3178669002805},{\"x\":15.2424242424242,\"y\":42.1215870478899},{\"x\":15.4545454545455,\"y\":42.9433979773512},{\"x\":15.6666666666667,\"y\":43.7713004699092},{\"x\":15.8787878787879,\"y\":44.5932953068086},{\"x\":16.0909090909091,\"y\":45.3973832692944},{\"x\":16.3030303030303,\"y\":46.1715651386113},{\"x\":16.5151515151515,\"y\":46.9038416960042},{\"x\":16.7272727272727,\"y\":47.5822137227179},{\"x\":16.9393939393939,\"y\":48.1946819999972},{\"x\":17.1515151515152,\"y\":48.7101743442239},{\"x\":17.3636363636364,\"y\":49.0907323283968},{\"x\":17.5757575757576,\"y\":49.3750399946966},{\"x\":17.7878787878788,\"y\":49.6055742312034},{\"x\":18,\"y\":49.8248119259973},{\"x\":18.2121212121212,\"y\":50.0752299671586},{\"x\":18.4242424242424,\"y\":50.3993052427674},{\"x\":18.6363636363636,\"y\":50.8395146409039},{\"x\":18.8484848484849,\"y\":51.4383350496483},{\"x\":19.0606060606061,\"y\":52.2303551888984},{\"x\":19.2727272727273,\"y\":53.1105080011928},{\"x\":19.4848484848485,\"y\":54.0338674846744},{\"x\":19.6969696969697,\"y\":55.0012676255404},{\"x\":19.9090909090909,\"y\":56.013542409988},{\"x\":20.1212121212121,\"y\":57.0715258242144},{\"x\":20.3333333333333,\"y\":58.1760518544167},{\"x\":20.5454545454545,\"y\":59.3279544867921},{\"x\":20.7575757575758,\"y\":60.5280677075378},{\"x\":20.969696969697,\"y\":61.7772255028509},{\"x\":21.1818181818182,\"y\":63.0762618589288},{\"x\":21.3939393939394,\"y\":64.4260107619684},{\"x\":21.6060606060606,\"y\":65.8273061981671},{\"x\":21.8181818181818,\"y\":67.2809821537219},{\"x\":22.030303030303,\"y\":68.7878193375291},{\"x\":22.2424242424242,\"y\":70.3453585939731},{\"x\":22.4545454545455,\"y\":71.9523416697846},{\"x\":22.6666666666667,\"y\":73.6094039796523},{\"x\":22.8787878787879,\"y\":75.3171809382651},{\"x\":23.0909090909091,\"y\":77.0763079603116},{\"x\":23.3030303030303,\"y\":78.8874204604805},{\"x\":23.5151515151515,\"y\":80.7511538534607},{\"x\":23.7272727272727,\"y\":82.6681435539408},{\"x\":23.9393939393939,\"y\":84.6390249766096},{\"x\":24.1515151515152,\"y\":86.6644335361558},{\"x\":24.3636363636364,\"y\":88.7450046472682},{\"x\":24.5757575757576,\"y\":90.8813737246355},{\"x\":24.7878787878788,\"y\":93.0741761829463},{\"x\":25,\"y\":95.3240474368896}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":0,\"max\":25,\"tickAmount\":5,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":0,\"max\":120,\"tickAmount\":6,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"markers\":{\"size\":[6,0,0]},\"stroke\":{\"curve\":\"straight\"}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":4,\"max\":25},\"type\":\"scatter\",\"mixed_type\":\"scatter\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/add-shade.html","id":null,"dir":"Reference","previous_headings":"","what":"Add a shaded area to a chart — add-shade","title":"Add a shaded area to a chart — add-shade","text":"add_shade() allow add shaded area specified range, add_shade_weekend() add shadow every week-end.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add-shade.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Add a shaded area to a chart — add-shade","text":"","code":"add_shade(ax, from, to, color = \"#848484\", opacity = 0.2, label = NULL, ...) add_shade_weekend(ax, color = \"#848484\", opacity = 0.2, label = NULL, ...)"},{"path":"https://dreamrs.github.io/apexcharter/reference/add-shade.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Add a shaded area to a chart — add-shade","text":"ax apexchart() htmlwidget object. Vector position start shadow. Vector position end shadow. color Color shadow. opacity Opacity shadow. label Add label shade, use character see label controls. ... Additional arguments, see https://apexcharts.com/docs/options/annotations/ possible options.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add-shade.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Add a shaded area to a chart — add-shade","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add-shade.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Add a shaded area to a chart — add-shade","text":"add_shade_weekend works variable used x-axis class Date POSIXt.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add-shade.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Add a shaded area to a chart — add-shade","text":"","code":"library(apexcharter) data(\"consumption\") # specify from and to date apex(consumption, aes(date, value, group = type), \"spline\") %>% add_shade(from = \"2020-01-06\", to = \"2020-01-20\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"Realised\",\"type\":\"line\",\"data\":[[1577836800000,1445],[1577923200000,1545],[1578009600000,1501],[1578096000000,1444],[1578182400000,1443],[1578268800000,1659],[1578355200000,1631],[1578441600000,1558],[1578528000000,1510],[1578614400000,1545],[1578700800000,1478],[1578787200000,1453],[1578873600000,1614],[1578960000000,1594],[1579046400000,1565],[1579132800000,1543],[1579219200000,1539],[1579305600000,1498],[1579392000000,1520],[1579478400000,1744],[1579564800000,1792],[1579651200000,1805],[1579737600000,1798],[1579824000000,1760],[1579910400000,1593],[1579996800000,1469],[1580083200000,1616],[1580169600000,1637],[1580256000000,1619],[1580342400000,1594],[1580428800000,1462],[1580515200000,1314],[1580601600000,1247],[1580688000000,1385],[1580774400000,1511],[1580860800000,1588],[1580947200000,1636],[1581033600000,1628],[1581120000000,1430],[1581206400000,1352],[1581292800000,1470],[1581379200000,1534],[1581465600000,1572],[1581552000000,1597],[1581638400000,1512],[1581724800000,1361],[1581811200000,1258],[1581897600000,1448],[1581984000000,1523],[1582070400000,1547],[1582156800000,1521],[1582243200000,1535],[1582329600000,1387],[1582416000000,1276],[1582502400000,1403],[1582588800000,1464],[1582675200000,1591],[1582761600000,1631],[1582848000000,1601],[1582934400000,1400]]},{\"name\":\"Forecast D-1\",\"type\":\"line\",\"data\":[[1577836800000,1481],[1577923200000,1577],[1578009600000,1553],[1578096000000,1463],[1578182400000,1459],[1578268800000,1681],[1578355200000,1652],[1578441600000,1569],[1578528000000,1512],[1578614400000,1520],[1578700800000,1467],[1578787200000,1457],[1578873600000,1630],[1578960000000,1603],[1579046400000,1563],[1579132800000,1570],[1579219200000,1545],[1579305600000,1490],[1579392000000,1520],[1579478400000,1754],[1579564800000,1814],[1579651200000,1804],[1579737600000,1786],[1579824000000,1756],[1579910400000,1614],[1579996800000,1516],[1580083200000,1644],[1580169600000,1645],[1580256000000,1629],[1580342400000,1617],[1580428800000,1489],[1580515200000,1305],[1580601600000,1226],[1580688000000,1421],[1580774400000,1501],[1580860800000,1589],[1580947200000,1650],[1581033600000,1648],[1581120000000,1474],[1581206400000,1326],[1581292800000,1477],[1581379200000,1527],[1581465600000,1601],[1581552000000,1576],[1581638400000,1518],[1581724800000,1358],[1581811200000,1235],[1581897600000,1459],[1581984000000,1542],[1582070400000,1568],[1582156800000,1540],[1582243200000,1528],[1582329600000,1391],[1582416000000,1282],[1582502400000,1437],[1582588800000,1487],[1582675200000,1553],[1582761600000,1598],[1582848000000,1611],[1582934400000,1391]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"smooth\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"back\",\"xaxis\":[{\"x\":\"new Date('2020-01-06').getTime()\",\"x2\":\"new Date('2020-01-20').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2020-01-01\",\"max\":\"2020-02-29\"},\"type\":\"spline\"},\"evals\":[\"ax_opts.annotations.xaxis.0.x\",\"ax_opts.annotations.xaxis.0.x2\"],\"jsHooks\":[]} # you can add several shadows apex(consumption, aes(date, value, group = type), \"spline\") %>% add_shade(from = \"2020-01-06\", to = \"2020-01-20\") %>% add_shade(from = \"2020-02-04\", to = \"2020-02-10\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"Realised\",\"type\":\"line\",\"data\":[[1577836800000,1445],[1577923200000,1545],[1578009600000,1501],[1578096000000,1444],[1578182400000,1443],[1578268800000,1659],[1578355200000,1631],[1578441600000,1558],[1578528000000,1510],[1578614400000,1545],[1578700800000,1478],[1578787200000,1453],[1578873600000,1614],[1578960000000,1594],[1579046400000,1565],[1579132800000,1543],[1579219200000,1539],[1579305600000,1498],[1579392000000,1520],[1579478400000,1744],[1579564800000,1792],[1579651200000,1805],[1579737600000,1798],[1579824000000,1760],[1579910400000,1593],[1579996800000,1469],[1580083200000,1616],[1580169600000,1637],[1580256000000,1619],[1580342400000,1594],[1580428800000,1462],[1580515200000,1314],[1580601600000,1247],[1580688000000,1385],[1580774400000,1511],[1580860800000,1588],[1580947200000,1636],[1581033600000,1628],[1581120000000,1430],[1581206400000,1352],[1581292800000,1470],[1581379200000,1534],[1581465600000,1572],[1581552000000,1597],[1581638400000,1512],[1581724800000,1361],[1581811200000,1258],[1581897600000,1448],[1581984000000,1523],[1582070400000,1547],[1582156800000,1521],[1582243200000,1535],[1582329600000,1387],[1582416000000,1276],[1582502400000,1403],[1582588800000,1464],[1582675200000,1591],[1582761600000,1631],[1582848000000,1601],[1582934400000,1400]]},{\"name\":\"Forecast D-1\",\"type\":\"line\",\"data\":[[1577836800000,1481],[1577923200000,1577],[1578009600000,1553],[1578096000000,1463],[1578182400000,1459],[1578268800000,1681],[1578355200000,1652],[1578441600000,1569],[1578528000000,1512],[1578614400000,1520],[1578700800000,1467],[1578787200000,1457],[1578873600000,1630],[1578960000000,1603],[1579046400000,1563],[1579132800000,1570],[1579219200000,1545],[1579305600000,1490],[1579392000000,1520],[1579478400000,1754],[1579564800000,1814],[1579651200000,1804],[1579737600000,1786],[1579824000000,1756],[1579910400000,1614],[1579996800000,1516],[1580083200000,1644],[1580169600000,1645],[1580256000000,1629],[1580342400000,1617],[1580428800000,1489],[1580515200000,1305],[1580601600000,1226],[1580688000000,1421],[1580774400000,1501],[1580860800000,1589],[1580947200000,1650],[1581033600000,1648],[1581120000000,1474],[1581206400000,1326],[1581292800000,1477],[1581379200000,1527],[1581465600000,1601],[1581552000000,1576],[1581638400000,1518],[1581724800000,1358],[1581811200000,1235],[1581897600000,1459],[1581984000000,1542],[1582070400000,1568],[1582156800000,1540],[1582243200000,1528],[1582329600000,1391],[1582416000000,1282],[1582502400000,1437],[1582588800000,1487],[1582675200000,1553],[1582761600000,1598],[1582848000000,1611],[1582934400000,1391]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"smooth\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"back\",\"xaxis\":[{\"x\":\"new Date('2020-02-04').getTime()\",\"x2\":\"new Date('2020-02-10').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2},{\"x\":\"new Date('2020-01-06').getTime()\",\"x2\":\"new Date('2020-01-20').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2020-01-01\",\"max\":\"2020-02-29\"},\"type\":\"spline\"},\"evals\":[\"ax_opts.annotations.xaxis.0.x\",\"ax_opts.annotations.xaxis.0.x2\",\"ax_opts.annotations.xaxis.1.x\",\"ax_opts.annotations.xaxis.1.x2\"],\"jsHooks\":[]} # or use a vector apex(consumption, aes(date, value, group = type), \"spline\") %>% add_shade( from = c(\"2020-01-06\", \"2020-02-04\"), to = c(\"2020-01-20\", \"2020-02-10\") ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"Realised\",\"type\":\"line\",\"data\":[[1577836800000,1445],[1577923200000,1545],[1578009600000,1501],[1578096000000,1444],[1578182400000,1443],[1578268800000,1659],[1578355200000,1631],[1578441600000,1558],[1578528000000,1510],[1578614400000,1545],[1578700800000,1478],[1578787200000,1453],[1578873600000,1614],[1578960000000,1594],[1579046400000,1565],[1579132800000,1543],[1579219200000,1539],[1579305600000,1498],[1579392000000,1520],[1579478400000,1744],[1579564800000,1792],[1579651200000,1805],[1579737600000,1798],[1579824000000,1760],[1579910400000,1593],[1579996800000,1469],[1580083200000,1616],[1580169600000,1637],[1580256000000,1619],[1580342400000,1594],[1580428800000,1462],[1580515200000,1314],[1580601600000,1247],[1580688000000,1385],[1580774400000,1511],[1580860800000,1588],[1580947200000,1636],[1581033600000,1628],[1581120000000,1430],[1581206400000,1352],[1581292800000,1470],[1581379200000,1534],[1581465600000,1572],[1581552000000,1597],[1581638400000,1512],[1581724800000,1361],[1581811200000,1258],[1581897600000,1448],[1581984000000,1523],[1582070400000,1547],[1582156800000,1521],[1582243200000,1535],[1582329600000,1387],[1582416000000,1276],[1582502400000,1403],[1582588800000,1464],[1582675200000,1591],[1582761600000,1631],[1582848000000,1601],[1582934400000,1400]]},{\"name\":\"Forecast D-1\",\"type\":\"line\",\"data\":[[1577836800000,1481],[1577923200000,1577],[1578009600000,1553],[1578096000000,1463],[1578182400000,1459],[1578268800000,1681],[1578355200000,1652],[1578441600000,1569],[1578528000000,1512],[1578614400000,1520],[1578700800000,1467],[1578787200000,1457],[1578873600000,1630],[1578960000000,1603],[1579046400000,1563],[1579132800000,1570],[1579219200000,1545],[1579305600000,1490],[1579392000000,1520],[1579478400000,1754],[1579564800000,1814],[1579651200000,1804],[1579737600000,1786],[1579824000000,1756],[1579910400000,1614],[1579996800000,1516],[1580083200000,1644],[1580169600000,1645],[1580256000000,1629],[1580342400000,1617],[1580428800000,1489],[1580515200000,1305],[1580601600000,1226],[1580688000000,1421],[1580774400000,1501],[1580860800000,1589],[1580947200000,1650],[1581033600000,1648],[1581120000000,1474],[1581206400000,1326],[1581292800000,1477],[1581379200000,1527],[1581465600000,1601],[1581552000000,1576],[1581638400000,1518],[1581724800000,1358],[1581811200000,1235],[1581897600000,1459],[1581984000000,1542],[1582070400000,1568],[1582156800000,1540],[1582243200000,1528],[1582329600000,1391],[1582416000000,1282],[1582502400000,1437],[1582588800000,1487],[1582675200000,1553],[1582761600000,1598],[1582848000000,1611],[1582934400000,1391]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"smooth\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"back\",\"xaxis\":[{\"x\":\"new Date('2020-01-06').getTime()\",\"x2\":\"new Date('2020-01-20').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2},{\"x\":\"new Date('2020-02-04').getTime()\",\"x2\":\"new Date('2020-02-10').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2020-01-01\",\"max\":\"2020-02-29\"},\"type\":\"spline\"},\"evals\":[\"ax_opts.annotations.xaxis.0.x\",\"ax_opts.annotations.xaxis.0.x2\",\"ax_opts.annotations.xaxis.1.x\",\"ax_opts.annotations.xaxis.1.x2\"],\"jsHooks\":[]} # Add a label apex(consumption, aes(date, value, group = type), \"spline\") %>% add_shade( from = \"2020-01-06\", to = \"2020-01-20\", label = \"interesting period\" ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"Realised\",\"type\":\"line\",\"data\":[[1577836800000,1445],[1577923200000,1545],[1578009600000,1501],[1578096000000,1444],[1578182400000,1443],[1578268800000,1659],[1578355200000,1631],[1578441600000,1558],[1578528000000,1510],[1578614400000,1545],[1578700800000,1478],[1578787200000,1453],[1578873600000,1614],[1578960000000,1594],[1579046400000,1565],[1579132800000,1543],[1579219200000,1539],[1579305600000,1498],[1579392000000,1520],[1579478400000,1744],[1579564800000,1792],[1579651200000,1805],[1579737600000,1798],[1579824000000,1760],[1579910400000,1593],[1579996800000,1469],[1580083200000,1616],[1580169600000,1637],[1580256000000,1619],[1580342400000,1594],[1580428800000,1462],[1580515200000,1314],[1580601600000,1247],[1580688000000,1385],[1580774400000,1511],[1580860800000,1588],[1580947200000,1636],[1581033600000,1628],[1581120000000,1430],[1581206400000,1352],[1581292800000,1470],[1581379200000,1534],[1581465600000,1572],[1581552000000,1597],[1581638400000,1512],[1581724800000,1361],[1581811200000,1258],[1581897600000,1448],[1581984000000,1523],[1582070400000,1547],[1582156800000,1521],[1582243200000,1535],[1582329600000,1387],[1582416000000,1276],[1582502400000,1403],[1582588800000,1464],[1582675200000,1591],[1582761600000,1631],[1582848000000,1601],[1582934400000,1400]]},{\"name\":\"Forecast D-1\",\"type\":\"line\",\"data\":[[1577836800000,1481],[1577923200000,1577],[1578009600000,1553],[1578096000000,1463],[1578182400000,1459],[1578268800000,1681],[1578355200000,1652],[1578441600000,1569],[1578528000000,1512],[1578614400000,1520],[1578700800000,1467],[1578787200000,1457],[1578873600000,1630],[1578960000000,1603],[1579046400000,1563],[1579132800000,1570],[1579219200000,1545],[1579305600000,1490],[1579392000000,1520],[1579478400000,1754],[1579564800000,1814],[1579651200000,1804],[1579737600000,1786],[1579824000000,1756],[1579910400000,1614],[1579996800000,1516],[1580083200000,1644],[1580169600000,1645],[1580256000000,1629],[1580342400000,1617],[1580428800000,1489],[1580515200000,1305],[1580601600000,1226],[1580688000000,1421],[1580774400000,1501],[1580860800000,1589],[1580947200000,1650],[1581033600000,1648],[1581120000000,1474],[1581206400000,1326],[1581292800000,1477],[1581379200000,1527],[1581465600000,1601],[1581552000000,1576],[1581638400000,1518],[1581724800000,1358],[1581811200000,1235],[1581897600000,1459],[1581984000000,1542],[1582070400000,1568],[1582156800000,1540],[1582243200000,1528],[1582329600000,1391],[1582416000000,1282],[1582502400000,1437],[1582588800000,1487],[1582675200000,1553],[1582761600000,1598],[1582848000000,1611],[1582934400000,1391]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"smooth\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"back\",\"xaxis\":[{\"x\":\"new Date('2020-01-06').getTime()\",\"x2\":\"new Date('2020-01-20').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2,\"label\":{\"text\":\"interesting period\"}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2020-01-01\",\"max\":\"2020-02-29\"},\"type\":\"spline\"},\"evals\":[\"ax_opts.annotations.xaxis.0.x\",\"ax_opts.annotations.xaxis.0.x2\"],\"jsHooks\":[]} # add label with more options apex(consumption, aes(date, value, group = type), \"spline\") %>% add_shade( from = \"2020-01-06\", to = \"2020-01-20\", color = \"firebrick\", label = label( text = \"something happened\", background = \"firebrick\", color = \"white\", fontWeight = \"bold\", padding = c(3, 5, 3, 5) ) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"Realised\",\"type\":\"line\",\"data\":[[1577836800000,1445],[1577923200000,1545],[1578009600000,1501],[1578096000000,1444],[1578182400000,1443],[1578268800000,1659],[1578355200000,1631],[1578441600000,1558],[1578528000000,1510],[1578614400000,1545],[1578700800000,1478],[1578787200000,1453],[1578873600000,1614],[1578960000000,1594],[1579046400000,1565],[1579132800000,1543],[1579219200000,1539],[1579305600000,1498],[1579392000000,1520],[1579478400000,1744],[1579564800000,1792],[1579651200000,1805],[1579737600000,1798],[1579824000000,1760],[1579910400000,1593],[1579996800000,1469],[1580083200000,1616],[1580169600000,1637],[1580256000000,1619],[1580342400000,1594],[1580428800000,1462],[1580515200000,1314],[1580601600000,1247],[1580688000000,1385],[1580774400000,1511],[1580860800000,1588],[1580947200000,1636],[1581033600000,1628],[1581120000000,1430],[1581206400000,1352],[1581292800000,1470],[1581379200000,1534],[1581465600000,1572],[1581552000000,1597],[1581638400000,1512],[1581724800000,1361],[1581811200000,1258],[1581897600000,1448],[1581984000000,1523],[1582070400000,1547],[1582156800000,1521],[1582243200000,1535],[1582329600000,1387],[1582416000000,1276],[1582502400000,1403],[1582588800000,1464],[1582675200000,1591],[1582761600000,1631],[1582848000000,1601],[1582934400000,1400]]},{\"name\":\"Forecast D-1\",\"type\":\"line\",\"data\":[[1577836800000,1481],[1577923200000,1577],[1578009600000,1553],[1578096000000,1463],[1578182400000,1459],[1578268800000,1681],[1578355200000,1652],[1578441600000,1569],[1578528000000,1512],[1578614400000,1520],[1578700800000,1467],[1578787200000,1457],[1578873600000,1630],[1578960000000,1603],[1579046400000,1563],[1579132800000,1570],[1579219200000,1545],[1579305600000,1490],[1579392000000,1520],[1579478400000,1754],[1579564800000,1814],[1579651200000,1804],[1579737600000,1786],[1579824000000,1756],[1579910400000,1614],[1579996800000,1516],[1580083200000,1644],[1580169600000,1645],[1580256000000,1629],[1580342400000,1617],[1580428800000,1489],[1580515200000,1305],[1580601600000,1226],[1580688000000,1421],[1580774400000,1501],[1580860800000,1589],[1580947200000,1650],[1581033600000,1648],[1581120000000,1474],[1581206400000,1326],[1581292800000,1477],[1581379200000,1527],[1581465600000,1601],[1581552000000,1576],[1581638400000,1518],[1581724800000,1358],[1581811200000,1235],[1581897600000,1459],[1581984000000,1542],[1582070400000,1568],[1582156800000,1540],[1582243200000,1528],[1582329600000,1391],[1582416000000,1282],[1582502400000,1437],[1582588800000,1487],[1582675200000,1553],[1582761600000,1598],[1582848000000,1611],[1582934400000,1391]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"smooth\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"back\",\"xaxis\":[{\"x\":\"new Date('2020-01-06').getTime()\",\"x2\":\"new Date('2020-01-20').getTime()\",\"fillColor\":\"firebrick\",\"opacity\":0.2,\"label\":{\"text\":\"something happened\",\"style\":{\"background\":\"firebrick\",\"color\":\"white\",\"fontWeight\":\"bold\",\"padding\":{\"top\":3,\"right\":5,\"bottom\":3,\"left\":5}}}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2020-01-01\",\"max\":\"2020-02-29\"},\"type\":\"spline\"},\"evals\":[\"ax_opts.annotations.xaxis.0.x\",\"ax_opts.annotations.xaxis.0.x2\"],\"jsHooks\":[]} # automatically add shadow on week-ends apex(consumption, aes(date, value, group = type), \"spline\") %>% add_shade_weekend() {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"Realised\",\"type\":\"line\",\"data\":[[1577836800000,1445],[1577923200000,1545],[1578009600000,1501],[1578096000000,1444],[1578182400000,1443],[1578268800000,1659],[1578355200000,1631],[1578441600000,1558],[1578528000000,1510],[1578614400000,1545],[1578700800000,1478],[1578787200000,1453],[1578873600000,1614],[1578960000000,1594],[1579046400000,1565],[1579132800000,1543],[1579219200000,1539],[1579305600000,1498],[1579392000000,1520],[1579478400000,1744],[1579564800000,1792],[1579651200000,1805],[1579737600000,1798],[1579824000000,1760],[1579910400000,1593],[1579996800000,1469],[1580083200000,1616],[1580169600000,1637],[1580256000000,1619],[1580342400000,1594],[1580428800000,1462],[1580515200000,1314],[1580601600000,1247],[1580688000000,1385],[1580774400000,1511],[1580860800000,1588],[1580947200000,1636],[1581033600000,1628],[1581120000000,1430],[1581206400000,1352],[1581292800000,1470],[1581379200000,1534],[1581465600000,1572],[1581552000000,1597],[1581638400000,1512],[1581724800000,1361],[1581811200000,1258],[1581897600000,1448],[1581984000000,1523],[1582070400000,1547],[1582156800000,1521],[1582243200000,1535],[1582329600000,1387],[1582416000000,1276],[1582502400000,1403],[1582588800000,1464],[1582675200000,1591],[1582761600000,1631],[1582848000000,1601],[1582934400000,1400]]},{\"name\":\"Forecast D-1\",\"type\":\"line\",\"data\":[[1577836800000,1481],[1577923200000,1577],[1578009600000,1553],[1578096000000,1463],[1578182400000,1459],[1578268800000,1681],[1578355200000,1652],[1578441600000,1569],[1578528000000,1512],[1578614400000,1520],[1578700800000,1467],[1578787200000,1457],[1578873600000,1630],[1578960000000,1603],[1579046400000,1563],[1579132800000,1570],[1579219200000,1545],[1579305600000,1490],[1579392000000,1520],[1579478400000,1754],[1579564800000,1814],[1579651200000,1804],[1579737600000,1786],[1579824000000,1756],[1579910400000,1614],[1579996800000,1516],[1580083200000,1644],[1580169600000,1645],[1580256000000,1629],[1580342400000,1617],[1580428800000,1489],[1580515200000,1305],[1580601600000,1226],[1580688000000,1421],[1580774400000,1501],[1580860800000,1589],[1580947200000,1650],[1581033600000,1648],[1581120000000,1474],[1581206400000,1326],[1581292800000,1477],[1581379200000,1527],[1581465600000,1601],[1581552000000,1576],[1581638400000,1518],[1581724800000,1358],[1581811200000,1235],[1581897600000,1459],[1581984000000,1542],[1582070400000,1568],[1582156800000,1540],[1582243200000,1528],[1582329600000,1391],[1582416000000,1282],[1582502400000,1437],[1582588800000,1487],[1582675200000,1553],[1582761600000,1598],[1582848000000,1611],[1582934400000,1391]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"smooth\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"back\",\"xaxis\":[{\"x\":\"new Date('2020-01-03 12:00:00').getTime()\",\"x2\":\"new Date('2020-01-05 12:00:00').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2},{\"x\":\"new Date('2020-01-10 12:00:00').getTime()\",\"x2\":\"new Date('2020-01-12 12:00:00').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2},{\"x\":\"new Date('2020-01-17 12:00:00').getTime()\",\"x2\":\"new Date('2020-01-19 12:00:00').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2},{\"x\":\"new Date('2020-01-24 12:00:00').getTime()\",\"x2\":\"new Date('2020-01-26 12:00:00').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2},{\"x\":\"new Date('2020-01-31 12:00:00').getTime()\",\"x2\":\"new Date('2020-02-02 12:00:00').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2},{\"x\":\"new Date('2020-02-07 12:00:00').getTime()\",\"x2\":\"new Date('2020-02-09 12:00:00').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2},{\"x\":\"new Date('2020-02-14 12:00:00').getTime()\",\"x2\":\"new Date('2020-02-16 12:00:00').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2},{\"x\":\"new Date('2020-02-21 12:00:00').getTime()\",\"x2\":\"new Date('2020-02-23 12:00:00').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2},{\"x\":\"new Date('2020-02-28 12:00:00').getTime()\",\"x2\":\"new Date('2020-03-01 12:00:00').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2020-01-01\",\"max\":\"2020-02-29\"},\"type\":\"spline\"},\"evals\":[\"ax_opts.annotations.xaxis.0.x\",\"ax_opts.annotations.xaxis.0.x2\",\"ax_opts.annotations.xaxis.1.x\",\"ax_opts.annotations.xaxis.1.x2\",\"ax_opts.annotations.xaxis.2.x\",\"ax_opts.annotations.xaxis.2.x2\",\"ax_opts.annotations.xaxis.3.x\",\"ax_opts.annotations.xaxis.3.x2\",\"ax_opts.annotations.xaxis.4.x\",\"ax_opts.annotations.xaxis.4.x2\",\"ax_opts.annotations.xaxis.5.x\",\"ax_opts.annotations.xaxis.5.x2\",\"ax_opts.annotations.xaxis.6.x\",\"ax_opts.annotations.xaxis.6.x2\",\"ax_opts.annotations.xaxis.7.x\",\"ax_opts.annotations.xaxis.7.x2\",\"ax_opts.annotations.xaxis.8.x\",\"ax_opts.annotations.xaxis.8.x2\"],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/add-vh-lines.html","id":null,"dir":"Reference","previous_headings":"","what":"Add horizontal or vertical line — add-vh-lines","title":"Add horizontal or vertical line — add-vh-lines","text":"Add horizontal vertical line","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add-vh-lines.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Add horizontal or vertical line — add-vh-lines","text":"","code":"add_hline(ax, value, color = \"#000\", dash = 0, label = NULL, ...) add_vline(ax, value, color = \"#000\", dash = 0, label = NULL, ...)"},{"path":"https://dreamrs.github.io/apexcharter/reference/add-vh-lines.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Add horizontal or vertical line — add-vh-lines","text":"ax apexchart() htmlwidget object. value Vector position line(s). color Color(s) line(s). dash Creates dashes borders SVG path. higher number creates space dashes border. Use 0 plain line. label Add label shade, use character see label controls. ... Additional arguments, see https://apexcharts.com/docs/options/annotations/ possible options.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add-vh-lines.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Add horizontal or vertical line — add-vh-lines","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add-vh-lines.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Add horizontal or vertical line — add-vh-lines","text":"","code":"library(apexcharter) # On a column chart unhcr_ts %>% subset(year == 2017 & population_type == \"Asylum-seekers\") %>% apex( aes(continent_origin, n), \"column\" ) %>% add_hline(value = 5e5) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"n\",\"type\":\"bar\",\"data\":[{\"x\":\"Africa\",\"y\":964124},{\"x\":\"Asia\",\"y\":1353541},{\"x\":\"Europe\",\"y\":130065},{\"x\":\"North America\",\"y\":384104},{\"x\":\"Oceania\",\"y\":1315},{\"x\":\"South America\",\"y\":210425}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"front\",\"yaxis\":[{\"y\":500000,\"borderColor\":\"#000\",\"strokeDashArray\":0}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"Africa\",\"max\":\"South America\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # On a scatter chart apex( data = cars, aes(speed, dist), \"scatter\" ) %>% add_hline(value = mean(cars$dist)) %>% add_vline(value = mean(cars$speed)) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"scatter\"},\"series\":[{\"name\":\"dist\",\"type\":\"scatter\",\"data\":[{\"x\":4,\"y\":2},{\"x\":4,\"y\":10},{\"x\":7,\"y\":4},{\"x\":7,\"y\":22},{\"x\":8,\"y\":16},{\"x\":9,\"y\":10},{\"x\":10,\"y\":18},{\"x\":10,\"y\":26},{\"x\":10,\"y\":34},{\"x\":11,\"y\":17},{\"x\":11,\"y\":28},{\"x\":12,\"y\":14},{\"x\":12,\"y\":20},{\"x\":12,\"y\":24},{\"x\":12,\"y\":28},{\"x\":13,\"y\":26},{\"x\":13,\"y\":34},{\"x\":13,\"y\":34},{\"x\":13,\"y\":46},{\"x\":14,\"y\":26},{\"x\":14,\"y\":36},{\"x\":14,\"y\":60},{\"x\":14,\"y\":80},{\"x\":15,\"y\":20},{\"x\":15,\"y\":26},{\"x\":15,\"y\":54},{\"x\":16,\"y\":32},{\"x\":16,\"y\":40},{\"x\":17,\"y\":32},{\"x\":17,\"y\":40},{\"x\":17,\"y\":50},{\"x\":18,\"y\":42},{\"x\":18,\"y\":56},{\"x\":18,\"y\":76},{\"x\":18,\"y\":84},{\"x\":19,\"y\":36},{\"x\":19,\"y\":46},{\"x\":19,\"y\":68},{\"x\":20,\"y\":32},{\"x\":20,\"y\":48},{\"x\":20,\"y\":52},{\"x\":20,\"y\":56},{\"x\":20,\"y\":64},{\"x\":22,\"y\":66},{\"x\":23,\"y\":54},{\"x\":24,\"y\":70},{\"x\":24,\"y\":92},{\"x\":24,\"y\":93},{\"x\":24,\"y\":120},{\"x\":25,\"y\":85}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":0,\"max\":25,\"tickAmount\":5,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":0,\"max\":120,\"tickAmount\":6,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"annotations\":{\"position\":\"front\",\"yaxis\":[{\"y\":42.98,\"borderColor\":\"#000\",\"strokeDashArray\":0}],\"xaxis\":[{\"x\":15.4,\"borderColor\":\"#000\",\"strokeDashArray\":0}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":4,\"max\":25},\"type\":\"scatter\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} # With labels apex( data = cars, aes(speed, dist), \"scatter\" ) %>% add_hline( value = mean(cars$dist), label = \"Mean of dist\" ) %>% add_vline( value = mean(cars$speed), label = label( text = \"Mean of speed\", borderColor = \"red\" ) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"scatter\"},\"series\":[{\"name\":\"dist\",\"type\":\"scatter\",\"data\":[{\"x\":4,\"y\":2},{\"x\":4,\"y\":10},{\"x\":7,\"y\":4},{\"x\":7,\"y\":22},{\"x\":8,\"y\":16},{\"x\":9,\"y\":10},{\"x\":10,\"y\":18},{\"x\":10,\"y\":26},{\"x\":10,\"y\":34},{\"x\":11,\"y\":17},{\"x\":11,\"y\":28},{\"x\":12,\"y\":14},{\"x\":12,\"y\":20},{\"x\":12,\"y\":24},{\"x\":12,\"y\":28},{\"x\":13,\"y\":26},{\"x\":13,\"y\":34},{\"x\":13,\"y\":34},{\"x\":13,\"y\":46},{\"x\":14,\"y\":26},{\"x\":14,\"y\":36},{\"x\":14,\"y\":60},{\"x\":14,\"y\":80},{\"x\":15,\"y\":20},{\"x\":15,\"y\":26},{\"x\":15,\"y\":54},{\"x\":16,\"y\":32},{\"x\":16,\"y\":40},{\"x\":17,\"y\":32},{\"x\":17,\"y\":40},{\"x\":17,\"y\":50},{\"x\":18,\"y\":42},{\"x\":18,\"y\":56},{\"x\":18,\"y\":76},{\"x\":18,\"y\":84},{\"x\":19,\"y\":36},{\"x\":19,\"y\":46},{\"x\":19,\"y\":68},{\"x\":20,\"y\":32},{\"x\":20,\"y\":48},{\"x\":20,\"y\":52},{\"x\":20,\"y\":56},{\"x\":20,\"y\":64},{\"x\":22,\"y\":66},{\"x\":23,\"y\":54},{\"x\":24,\"y\":70},{\"x\":24,\"y\":92},{\"x\":24,\"y\":93},{\"x\":24,\"y\":120},{\"x\":25,\"y\":85}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":0,\"max\":25,\"tickAmount\":5,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":0,\"max\":120,\"tickAmount\":6,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"annotations\":{\"position\":\"front\",\"yaxis\":[{\"y\":42.98,\"borderColor\":\"#000\",\"strokeDashArray\":0,\"label\":{\"text\":\"Mean of dist\"}}],\"xaxis\":[{\"x\":15.4,\"borderColor\":\"#000\",\"strokeDashArray\":0,\"label\":{\"borderColor\":\"red\",\"text\":\"Mean of speed\",\"style\":{\"padding\":{\"top\":2,\"right\":5,\"bottom\":2,\"left\":5}}}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":4,\"max\":25},\"type\":\"scatter\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/add_event.html","id":null,"dir":"Reference","previous_headings":"","what":"Add an event to a chart — add_event","title":"Add an event to a chart — add_event","text":"Add vertical line mark special event chart.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add_event.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Add an event to a chart — add_event","text":"","code":"add_event(ax, when, color = \"#E41A1C\", dash = 4, label = NULL, ...)"},{"path":"https://dreamrs.github.io/apexcharter/reference/add_event.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Add an event to a chart — add_event","text":"ax apexchart() htmlwidget object. Vector position place event. color Color line. dash Creates dashes borders SVG path. higher number creates space dashes border. Use 0 plain line. label Add label shade, use character see label controls. ... Additional arguments, see https://apexcharts.com/docs/options/annotations/ possible options.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add_event.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Add an event to a chart — add_event","text":"apexchart()htmlwidget object.","code":""},{"path":[]},{"path":"https://dreamrs.github.io/apexcharter/reference/add_event.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Add an event to a chart — add_event","text":"","code":"library(apexcharter) data(\"consumption\") # specify from and to date apex(consumption, aes(date, value, group = type), \"spline\") %>% add_event(when = \"2020-01-11\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"Realised\",\"type\":\"line\",\"data\":[[1577836800000,1445],[1577923200000,1545],[1578009600000,1501],[1578096000000,1444],[1578182400000,1443],[1578268800000,1659],[1578355200000,1631],[1578441600000,1558],[1578528000000,1510],[1578614400000,1545],[1578700800000,1478],[1578787200000,1453],[1578873600000,1614],[1578960000000,1594],[1579046400000,1565],[1579132800000,1543],[1579219200000,1539],[1579305600000,1498],[1579392000000,1520],[1579478400000,1744],[1579564800000,1792],[1579651200000,1805],[1579737600000,1798],[1579824000000,1760],[1579910400000,1593],[1579996800000,1469],[1580083200000,1616],[1580169600000,1637],[1580256000000,1619],[1580342400000,1594],[1580428800000,1462],[1580515200000,1314],[1580601600000,1247],[1580688000000,1385],[1580774400000,1511],[1580860800000,1588],[1580947200000,1636],[1581033600000,1628],[1581120000000,1430],[1581206400000,1352],[1581292800000,1470],[1581379200000,1534],[1581465600000,1572],[1581552000000,1597],[1581638400000,1512],[1581724800000,1361],[1581811200000,1258],[1581897600000,1448],[1581984000000,1523],[1582070400000,1547],[1582156800000,1521],[1582243200000,1535],[1582329600000,1387],[1582416000000,1276],[1582502400000,1403],[1582588800000,1464],[1582675200000,1591],[1582761600000,1631],[1582848000000,1601],[1582934400000,1400]]},{\"name\":\"Forecast D-1\",\"type\":\"line\",\"data\":[[1577836800000,1481],[1577923200000,1577],[1578009600000,1553],[1578096000000,1463],[1578182400000,1459],[1578268800000,1681],[1578355200000,1652],[1578441600000,1569],[1578528000000,1512],[1578614400000,1520],[1578700800000,1467],[1578787200000,1457],[1578873600000,1630],[1578960000000,1603],[1579046400000,1563],[1579132800000,1570],[1579219200000,1545],[1579305600000,1490],[1579392000000,1520],[1579478400000,1754],[1579564800000,1814],[1579651200000,1804],[1579737600000,1786],[1579824000000,1756],[1579910400000,1614],[1579996800000,1516],[1580083200000,1644],[1580169600000,1645],[1580256000000,1629],[1580342400000,1617],[1580428800000,1489],[1580515200000,1305],[1580601600000,1226],[1580688000000,1421],[1580774400000,1501],[1580860800000,1589],[1580947200000,1650],[1581033600000,1648],[1581120000000,1474],[1581206400000,1326],[1581292800000,1477],[1581379200000,1527],[1581465600000,1601],[1581552000000,1576],[1581638400000,1518],[1581724800000,1358],[1581811200000,1235],[1581897600000,1459],[1581984000000,1542],[1582070400000,1568],[1582156800000,1540],[1582243200000,1528],[1582329600000,1391],[1582416000000,1282],[1582502400000,1437],[1582588800000,1487],[1582675200000,1553],[1582761600000,1598],[1582848000000,1611],[1582934400000,1391]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"smooth\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"back\",\"xaxis\":[{\"x\":\"new Date('2020-01-11').getTime()\",\"borderColor\":\"#E41A1C\",\"strokeDashArray\":4}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2020-01-01\",\"max\":\"2020-02-29\"},\"type\":\"spline\"},\"evals\":[\"ax_opts.annotations.xaxis.0.x\"],\"jsHooks\":[]} # several events apex(consumption, aes(date, value, group = type), \"spline\") %>% add_event(when = c(\"2020-01-11\", \"2020-01-29\")) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"Realised\",\"type\":\"line\",\"data\":[[1577836800000,1445],[1577923200000,1545],[1578009600000,1501],[1578096000000,1444],[1578182400000,1443],[1578268800000,1659],[1578355200000,1631],[1578441600000,1558],[1578528000000,1510],[1578614400000,1545],[1578700800000,1478],[1578787200000,1453],[1578873600000,1614],[1578960000000,1594],[1579046400000,1565],[1579132800000,1543],[1579219200000,1539],[1579305600000,1498],[1579392000000,1520],[1579478400000,1744],[1579564800000,1792],[1579651200000,1805],[1579737600000,1798],[1579824000000,1760],[1579910400000,1593],[1579996800000,1469],[1580083200000,1616],[1580169600000,1637],[1580256000000,1619],[1580342400000,1594],[1580428800000,1462],[1580515200000,1314],[1580601600000,1247],[1580688000000,1385],[1580774400000,1511],[1580860800000,1588],[1580947200000,1636],[1581033600000,1628],[1581120000000,1430],[1581206400000,1352],[1581292800000,1470],[1581379200000,1534],[1581465600000,1572],[1581552000000,1597],[1581638400000,1512],[1581724800000,1361],[1581811200000,1258],[1581897600000,1448],[1581984000000,1523],[1582070400000,1547],[1582156800000,1521],[1582243200000,1535],[1582329600000,1387],[1582416000000,1276],[1582502400000,1403],[1582588800000,1464],[1582675200000,1591],[1582761600000,1631],[1582848000000,1601],[1582934400000,1400]]},{\"name\":\"Forecast D-1\",\"type\":\"line\",\"data\":[[1577836800000,1481],[1577923200000,1577],[1578009600000,1553],[1578096000000,1463],[1578182400000,1459],[1578268800000,1681],[1578355200000,1652],[1578441600000,1569],[1578528000000,1512],[1578614400000,1520],[1578700800000,1467],[1578787200000,1457],[1578873600000,1630],[1578960000000,1603],[1579046400000,1563],[1579132800000,1570],[1579219200000,1545],[1579305600000,1490],[1579392000000,1520],[1579478400000,1754],[1579564800000,1814],[1579651200000,1804],[1579737600000,1786],[1579824000000,1756],[1579910400000,1614],[1579996800000,1516],[1580083200000,1644],[1580169600000,1645],[1580256000000,1629],[1580342400000,1617],[1580428800000,1489],[1580515200000,1305],[1580601600000,1226],[1580688000000,1421],[1580774400000,1501],[1580860800000,1589],[1580947200000,1650],[1581033600000,1648],[1581120000000,1474],[1581206400000,1326],[1581292800000,1477],[1581379200000,1527],[1581465600000,1601],[1581552000000,1576],[1581638400000,1518],[1581724800000,1358],[1581811200000,1235],[1581897600000,1459],[1581984000000,1542],[1582070400000,1568],[1582156800000,1540],[1582243200000,1528],[1582329600000,1391],[1582416000000,1282],[1582502400000,1437],[1582588800000,1487],[1582675200000,1553],[1582761600000,1598],[1582848000000,1611],[1582934400000,1391]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"smooth\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"back\",\"xaxis\":[{\"x\":\"new Date('2020-01-11').getTime()\",\"borderColor\":\"#E41A1C\",\"strokeDashArray\":4},{\"x\":\"new Date('2020-01-29').getTime()\",\"borderColor\":\"#E41A1C\",\"strokeDashArray\":4}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2020-01-01\",\"max\":\"2020-02-29\"},\"type\":\"spline\"},\"evals\":[\"ax_opts.annotations.xaxis.0.x\",\"ax_opts.annotations.xaxis.1.x\"],\"jsHooks\":[]} # Add labels on events apex(consumption, aes(date, value, group = type), \"spline\") %>% add_event( when = c(\"2020-01-11\", \"2020-01-29\"), label = label(text = c(\"Am\", \"Ar\")) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"Realised\",\"type\":\"line\",\"data\":[[1577836800000,1445],[1577923200000,1545],[1578009600000,1501],[1578096000000,1444],[1578182400000,1443],[1578268800000,1659],[1578355200000,1631],[1578441600000,1558],[1578528000000,1510],[1578614400000,1545],[1578700800000,1478],[1578787200000,1453],[1578873600000,1614],[1578960000000,1594],[1579046400000,1565],[1579132800000,1543],[1579219200000,1539],[1579305600000,1498],[1579392000000,1520],[1579478400000,1744],[1579564800000,1792],[1579651200000,1805],[1579737600000,1798],[1579824000000,1760],[1579910400000,1593],[1579996800000,1469],[1580083200000,1616],[1580169600000,1637],[1580256000000,1619],[1580342400000,1594],[1580428800000,1462],[1580515200000,1314],[1580601600000,1247],[1580688000000,1385],[1580774400000,1511],[1580860800000,1588],[1580947200000,1636],[1581033600000,1628],[1581120000000,1430],[1581206400000,1352],[1581292800000,1470],[1581379200000,1534],[1581465600000,1572],[1581552000000,1597],[1581638400000,1512],[1581724800000,1361],[1581811200000,1258],[1581897600000,1448],[1581984000000,1523],[1582070400000,1547],[1582156800000,1521],[1582243200000,1535],[1582329600000,1387],[1582416000000,1276],[1582502400000,1403],[1582588800000,1464],[1582675200000,1591],[1582761600000,1631],[1582848000000,1601],[1582934400000,1400]]},{\"name\":\"Forecast D-1\",\"type\":\"line\",\"data\":[[1577836800000,1481],[1577923200000,1577],[1578009600000,1553],[1578096000000,1463],[1578182400000,1459],[1578268800000,1681],[1578355200000,1652],[1578441600000,1569],[1578528000000,1512],[1578614400000,1520],[1578700800000,1467],[1578787200000,1457],[1578873600000,1630],[1578960000000,1603],[1579046400000,1563],[1579132800000,1570],[1579219200000,1545],[1579305600000,1490],[1579392000000,1520],[1579478400000,1754],[1579564800000,1814],[1579651200000,1804],[1579737600000,1786],[1579824000000,1756],[1579910400000,1614],[1579996800000,1516],[1580083200000,1644],[1580169600000,1645],[1580256000000,1629],[1580342400000,1617],[1580428800000,1489],[1580515200000,1305],[1580601600000,1226],[1580688000000,1421],[1580774400000,1501],[1580860800000,1589],[1580947200000,1650],[1581033600000,1648],[1581120000000,1474],[1581206400000,1326],[1581292800000,1477],[1581379200000,1527],[1581465600000,1601],[1581552000000,1576],[1581638400000,1518],[1581724800000,1358],[1581811200000,1235],[1581897600000,1459],[1581984000000,1542],[1582070400000,1568],[1582156800000,1540],[1582243200000,1528],[1582329600000,1391],[1582416000000,1282],[1582502400000,1437],[1582588800000,1487],[1582675200000,1553],[1582761600000,1598],[1582848000000,1611],[1582934400000,1391]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"smooth\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"back\",\"xaxis\":[{\"x\":\"new Date('2020-01-11').getTime()\",\"borderColor\":\"#E41A1C\",\"strokeDashArray\":4,\"label\":{\"text\":\"Am\",\"style\":{\"padding\":{\"top\":2,\"right\":5,\"bottom\":2,\"left\":5}}}},{\"x\":\"new Date('2020-01-29').getTime()\",\"borderColor\":\"#E41A1C\",\"strokeDashArray\":4,\"label\":{\"text\":\"Ar\",\"style\":{\"padding\":{\"top\":2,\"right\":5,\"bottom\":2,\"left\":5}}}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2020-01-01\",\"max\":\"2020-02-29\"},\"type\":\"spline\"},\"evals\":[\"ax_opts.annotations.xaxis.0.x\",\"ax_opts.annotations.xaxis.1.x\"],\"jsHooks\":[]} # can be combined with shade apex(consumption, aes(date, value, group = type), \"spline\") %>% add_shade(from = \"2020-01-06\", to = \"2020-01-20\")%>% add_event(when = c(\"2020-01-11\", \"2020-01-29\")) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"Realised\",\"type\":\"line\",\"data\":[[1577836800000,1445],[1577923200000,1545],[1578009600000,1501],[1578096000000,1444],[1578182400000,1443],[1578268800000,1659],[1578355200000,1631],[1578441600000,1558],[1578528000000,1510],[1578614400000,1545],[1578700800000,1478],[1578787200000,1453],[1578873600000,1614],[1578960000000,1594],[1579046400000,1565],[1579132800000,1543],[1579219200000,1539],[1579305600000,1498],[1579392000000,1520],[1579478400000,1744],[1579564800000,1792],[1579651200000,1805],[1579737600000,1798],[1579824000000,1760],[1579910400000,1593],[1579996800000,1469],[1580083200000,1616],[1580169600000,1637],[1580256000000,1619],[1580342400000,1594],[1580428800000,1462],[1580515200000,1314],[1580601600000,1247],[1580688000000,1385],[1580774400000,1511],[1580860800000,1588],[1580947200000,1636],[1581033600000,1628],[1581120000000,1430],[1581206400000,1352],[1581292800000,1470],[1581379200000,1534],[1581465600000,1572],[1581552000000,1597],[1581638400000,1512],[1581724800000,1361],[1581811200000,1258],[1581897600000,1448],[1581984000000,1523],[1582070400000,1547],[1582156800000,1521],[1582243200000,1535],[1582329600000,1387],[1582416000000,1276],[1582502400000,1403],[1582588800000,1464],[1582675200000,1591],[1582761600000,1631],[1582848000000,1601],[1582934400000,1400]]},{\"name\":\"Forecast D-1\",\"type\":\"line\",\"data\":[[1577836800000,1481],[1577923200000,1577],[1578009600000,1553],[1578096000000,1463],[1578182400000,1459],[1578268800000,1681],[1578355200000,1652],[1578441600000,1569],[1578528000000,1512],[1578614400000,1520],[1578700800000,1467],[1578787200000,1457],[1578873600000,1630],[1578960000000,1603],[1579046400000,1563],[1579132800000,1570],[1579219200000,1545],[1579305600000,1490],[1579392000000,1520],[1579478400000,1754],[1579564800000,1814],[1579651200000,1804],[1579737600000,1786],[1579824000000,1756],[1579910400000,1614],[1579996800000,1516],[1580083200000,1644],[1580169600000,1645],[1580256000000,1629],[1580342400000,1617],[1580428800000,1489],[1580515200000,1305],[1580601600000,1226],[1580688000000,1421],[1580774400000,1501],[1580860800000,1589],[1580947200000,1650],[1581033600000,1648],[1581120000000,1474],[1581206400000,1326],[1581292800000,1477],[1581379200000,1527],[1581465600000,1601],[1581552000000,1576],[1581638400000,1518],[1581724800000,1358],[1581811200000,1235],[1581897600000,1459],[1581984000000,1542],[1582070400000,1568],[1582156800000,1540],[1582243200000,1528],[1582329600000,1391],[1582416000000,1282],[1582502400000,1437],[1582588800000,1487],[1582675200000,1553],[1582761600000,1598],[1582848000000,1611],[1582934400000,1391]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"smooth\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"back\",\"xaxis\":[{\"x\":\"new Date('2020-01-11').getTime()\",\"borderColor\":\"#E41A1C\",\"strokeDashArray\":4},{\"x\":\"new Date('2020-01-29').getTime()\",\"borderColor\":\"#E41A1C\",\"strokeDashArray\":4},{\"x\":\"new Date('2020-01-06').getTime()\",\"x2\":\"new Date('2020-01-20').getTime()\",\"fillColor\":\"#848484\",\"opacity\":0.2}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2020-01-01\",\"max\":\"2020-02-29\"},\"type\":\"spline\"},\"evals\":[\"ax_opts.annotations.xaxis.0.x\",\"ax_opts.annotations.xaxis.1.x\",\"ax_opts.annotations.xaxis.2.x\",\"ax_opts.annotations.xaxis.2.x2\"],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/add_event_marker.html","id":null,"dir":"Reference","previous_headings":"","what":"Add an event marker to a chart — add_event_marker","title":"Add an event marker to a chart — add_event_marker","text":"Add point label based datetime.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add_event_marker.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Add an event marker to a chart — add_event_marker","text":"","code":"add_event_marker( ax, when, y, size = 5, color = \"#000\", fill = \"#FFF\", width = 2, shape = \"circle\", radius = 2, label = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/add_event_marker.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Add an event marker to a chart — add_event_marker","text":"ax apexchart() htmlwidget object. Vector position place event. y Coordinate(s) y-axis. size Size marker. color Stroke Color marker point. fill Fill Color marker point. width Stroke Size marker point. shape Shape marker: \"circle\" \"square\". radius Radius marker (applies square shape). label Add label shade, use character see label controls. ... Additional arguments, see https://apexcharts.com/docs/options/annotations/ possible options.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add_event_marker.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Add an event marker to a chart — add_event_marker","text":"apexchart()htmlwidget object.","code":""},{"path":[]},{"path":"https://dreamrs.github.io/apexcharter/reference/add_event_marker.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Add an event marker to a chart — add_event_marker","text":"","code":"library(apexcharter) data(\"consumption\") # add a marker apex(consumption, aes(date, value, group = type), \"spline\") %>% add_event_marker(when = \"2020-01-22\", y = 1805) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"Realised\",\"type\":\"line\",\"data\":[[1577836800000,1445],[1577923200000,1545],[1578009600000,1501],[1578096000000,1444],[1578182400000,1443],[1578268800000,1659],[1578355200000,1631],[1578441600000,1558],[1578528000000,1510],[1578614400000,1545],[1578700800000,1478],[1578787200000,1453],[1578873600000,1614],[1578960000000,1594],[1579046400000,1565],[1579132800000,1543],[1579219200000,1539],[1579305600000,1498],[1579392000000,1520],[1579478400000,1744],[1579564800000,1792],[1579651200000,1805],[1579737600000,1798],[1579824000000,1760],[1579910400000,1593],[1579996800000,1469],[1580083200000,1616],[1580169600000,1637],[1580256000000,1619],[1580342400000,1594],[1580428800000,1462],[1580515200000,1314],[1580601600000,1247],[1580688000000,1385],[1580774400000,1511],[1580860800000,1588],[1580947200000,1636],[1581033600000,1628],[1581120000000,1430],[1581206400000,1352],[1581292800000,1470],[1581379200000,1534],[1581465600000,1572],[1581552000000,1597],[1581638400000,1512],[1581724800000,1361],[1581811200000,1258],[1581897600000,1448],[1581984000000,1523],[1582070400000,1547],[1582156800000,1521],[1582243200000,1535],[1582329600000,1387],[1582416000000,1276],[1582502400000,1403],[1582588800000,1464],[1582675200000,1591],[1582761600000,1631],[1582848000000,1601],[1582934400000,1400]]},{\"name\":\"Forecast D-1\",\"type\":\"line\",\"data\":[[1577836800000,1481],[1577923200000,1577],[1578009600000,1553],[1578096000000,1463],[1578182400000,1459],[1578268800000,1681],[1578355200000,1652],[1578441600000,1569],[1578528000000,1512],[1578614400000,1520],[1578700800000,1467],[1578787200000,1457],[1578873600000,1630],[1578960000000,1603],[1579046400000,1563],[1579132800000,1570],[1579219200000,1545],[1579305600000,1490],[1579392000000,1520],[1579478400000,1754],[1579564800000,1814],[1579651200000,1804],[1579737600000,1786],[1579824000000,1756],[1579910400000,1614],[1579996800000,1516],[1580083200000,1644],[1580169600000,1645],[1580256000000,1629],[1580342400000,1617],[1580428800000,1489],[1580515200000,1305],[1580601600000,1226],[1580688000000,1421],[1580774400000,1501],[1580860800000,1589],[1580947200000,1650],[1581033600000,1648],[1581120000000,1474],[1581206400000,1326],[1581292800000,1477],[1581379200000,1527],[1581465600000,1601],[1581552000000,1576],[1581638400000,1518],[1581724800000,1358],[1581811200000,1235],[1581897600000,1459],[1581984000000,1542],[1582070400000,1568],[1582156800000,1540],[1582243200000,1528],[1582329600000,1391],[1582416000000,1282],[1582502400000,1437],[1582588800000,1487],[1582675200000,1553],[1582761600000,1598],[1582848000000,1611],[1582934400000,1391]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"smooth\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"front\",\"points\":[{\"x\":\"new Date('2020-01-22').getTime()\",\"y\":1805,\"marker\":{\"size\":5,\"fillColor\":\"#FFF\",\"strokeColor\":\"#000\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2020-01-01\",\"max\":\"2020-02-29\"},\"type\":\"spline\"},\"evals\":[\"ax_opts.annotations.points.0.x\"],\"jsHooks\":[]} # with a label apex(consumption, aes(date, value, group = type), \"spline\") %>% add_event_marker(when = \"2020-01-22\", y = 1805, label = \"Consumption peak\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"Realised\",\"type\":\"line\",\"data\":[[1577836800000,1445],[1577923200000,1545],[1578009600000,1501],[1578096000000,1444],[1578182400000,1443],[1578268800000,1659],[1578355200000,1631],[1578441600000,1558],[1578528000000,1510],[1578614400000,1545],[1578700800000,1478],[1578787200000,1453],[1578873600000,1614],[1578960000000,1594],[1579046400000,1565],[1579132800000,1543],[1579219200000,1539],[1579305600000,1498],[1579392000000,1520],[1579478400000,1744],[1579564800000,1792],[1579651200000,1805],[1579737600000,1798],[1579824000000,1760],[1579910400000,1593],[1579996800000,1469],[1580083200000,1616],[1580169600000,1637],[1580256000000,1619],[1580342400000,1594],[1580428800000,1462],[1580515200000,1314],[1580601600000,1247],[1580688000000,1385],[1580774400000,1511],[1580860800000,1588],[1580947200000,1636],[1581033600000,1628],[1581120000000,1430],[1581206400000,1352],[1581292800000,1470],[1581379200000,1534],[1581465600000,1572],[1581552000000,1597],[1581638400000,1512],[1581724800000,1361],[1581811200000,1258],[1581897600000,1448],[1581984000000,1523],[1582070400000,1547],[1582156800000,1521],[1582243200000,1535],[1582329600000,1387],[1582416000000,1276],[1582502400000,1403],[1582588800000,1464],[1582675200000,1591],[1582761600000,1631],[1582848000000,1601],[1582934400000,1400]]},{\"name\":\"Forecast D-1\",\"type\":\"line\",\"data\":[[1577836800000,1481],[1577923200000,1577],[1578009600000,1553],[1578096000000,1463],[1578182400000,1459],[1578268800000,1681],[1578355200000,1652],[1578441600000,1569],[1578528000000,1512],[1578614400000,1520],[1578700800000,1467],[1578787200000,1457],[1578873600000,1630],[1578960000000,1603],[1579046400000,1563],[1579132800000,1570],[1579219200000,1545],[1579305600000,1490],[1579392000000,1520],[1579478400000,1754],[1579564800000,1814],[1579651200000,1804],[1579737600000,1786],[1579824000000,1756],[1579910400000,1614],[1579996800000,1516],[1580083200000,1644],[1580169600000,1645],[1580256000000,1629],[1580342400000,1617],[1580428800000,1489],[1580515200000,1305],[1580601600000,1226],[1580688000000,1421],[1580774400000,1501],[1580860800000,1589],[1580947200000,1650],[1581033600000,1648],[1581120000000,1474],[1581206400000,1326],[1581292800000,1477],[1581379200000,1527],[1581465600000,1601],[1581552000000,1576],[1581638400000,1518],[1581724800000,1358],[1581811200000,1235],[1581897600000,1459],[1581984000000,1542],[1582070400000,1568],[1582156800000,1540],[1582243200000,1528],[1582329600000,1391],[1582416000000,1282],[1582502400000,1437],[1582588800000,1487],[1582675200000,1553],[1582761600000,1598],[1582848000000,1611],[1582934400000,1391]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"smooth\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"front\",\"points\":[{\"x\":\"new Date('2020-01-22').getTime()\",\"y\":1805,\"marker\":{\"size\":5,\"fillColor\":\"#FFF\",\"strokeColor\":\"#000\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2},\"label\":{\"text\":\"Consumption peak\"}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2020-01-01\",\"max\":\"2020-02-29\"},\"type\":\"spline\"},\"evals\":[\"ax_opts.annotations.points.0.x\"],\"jsHooks\":[]} # add several markers apex(consumption, aes(date, value, group = type), \"spline\") %>% add_event_marker( when = c(\"2020-01-02\", \"2020-01-06\", \"2020-01-13\", \"2020-01-22\", \"2020-01-28\", \"2020-02-06\", \"2020-02-13\", \"2020-02-19\", \"2020-02-27\"), y = c(1545, 1659, 1614, 1805, 1637, 1636, 1597, 1547, 1631), size = 10, color = \"firebrick\" ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"Realised\",\"type\":\"line\",\"data\":[[1577836800000,1445],[1577923200000,1545],[1578009600000,1501],[1578096000000,1444],[1578182400000,1443],[1578268800000,1659],[1578355200000,1631],[1578441600000,1558],[1578528000000,1510],[1578614400000,1545],[1578700800000,1478],[1578787200000,1453],[1578873600000,1614],[1578960000000,1594],[1579046400000,1565],[1579132800000,1543],[1579219200000,1539],[1579305600000,1498],[1579392000000,1520],[1579478400000,1744],[1579564800000,1792],[1579651200000,1805],[1579737600000,1798],[1579824000000,1760],[1579910400000,1593],[1579996800000,1469],[1580083200000,1616],[1580169600000,1637],[1580256000000,1619],[1580342400000,1594],[1580428800000,1462],[1580515200000,1314],[1580601600000,1247],[1580688000000,1385],[1580774400000,1511],[1580860800000,1588],[1580947200000,1636],[1581033600000,1628],[1581120000000,1430],[1581206400000,1352],[1581292800000,1470],[1581379200000,1534],[1581465600000,1572],[1581552000000,1597],[1581638400000,1512],[1581724800000,1361],[1581811200000,1258],[1581897600000,1448],[1581984000000,1523],[1582070400000,1547],[1582156800000,1521],[1582243200000,1535],[1582329600000,1387],[1582416000000,1276],[1582502400000,1403],[1582588800000,1464],[1582675200000,1591],[1582761600000,1631],[1582848000000,1601],[1582934400000,1400]]},{\"name\":\"Forecast D-1\",\"type\":\"line\",\"data\":[[1577836800000,1481],[1577923200000,1577],[1578009600000,1553],[1578096000000,1463],[1578182400000,1459],[1578268800000,1681],[1578355200000,1652],[1578441600000,1569],[1578528000000,1512],[1578614400000,1520],[1578700800000,1467],[1578787200000,1457],[1578873600000,1630],[1578960000000,1603],[1579046400000,1563],[1579132800000,1570],[1579219200000,1545],[1579305600000,1490],[1579392000000,1520],[1579478400000,1754],[1579564800000,1814],[1579651200000,1804],[1579737600000,1786],[1579824000000,1756],[1579910400000,1614],[1579996800000,1516],[1580083200000,1644],[1580169600000,1645],[1580256000000,1629],[1580342400000,1617],[1580428800000,1489],[1580515200000,1305],[1580601600000,1226],[1580688000000,1421],[1580774400000,1501],[1580860800000,1589],[1580947200000,1650],[1581033600000,1648],[1581120000000,1474],[1581206400000,1326],[1581292800000,1477],[1581379200000,1527],[1581465600000,1601],[1581552000000,1576],[1581638400000,1518],[1581724800000,1358],[1581811200000,1235],[1581897600000,1459],[1581984000000,1542],[1582070400000,1568],[1582156800000,1540],[1582243200000,1528],[1582329600000,1391],[1582416000000,1282],[1582502400000,1437],[1582588800000,1487],[1582675200000,1553],[1582761600000,1598],[1582848000000,1611],[1582934400000,1391]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"smooth\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"position\":\"front\",\"points\":[{\"x\":\"new Date('2020-01-02').getTime()\",\"y\":1545,\"marker\":{\"size\":10,\"fillColor\":\"#FFF\",\"strokeColor\":\"firebrick\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}},{\"x\":\"new Date('2020-01-06').getTime()\",\"y\":1659,\"marker\":{\"size\":10,\"fillColor\":\"#FFF\",\"strokeColor\":\"firebrick\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}},{\"x\":\"new Date('2020-01-13').getTime()\",\"y\":1614,\"marker\":{\"size\":10,\"fillColor\":\"#FFF\",\"strokeColor\":\"firebrick\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}},{\"x\":\"new Date('2020-01-22').getTime()\",\"y\":1805,\"marker\":{\"size\":10,\"fillColor\":\"#FFF\",\"strokeColor\":\"firebrick\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}},{\"x\":\"new Date('2020-01-28').getTime()\",\"y\":1637,\"marker\":{\"size\":10,\"fillColor\":\"#FFF\",\"strokeColor\":\"firebrick\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}},{\"x\":\"new Date('2020-02-06').getTime()\",\"y\":1636,\"marker\":{\"size\":10,\"fillColor\":\"#FFF\",\"strokeColor\":\"firebrick\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}},{\"x\":\"new Date('2020-02-13').getTime()\",\"y\":1597,\"marker\":{\"size\":10,\"fillColor\":\"#FFF\",\"strokeColor\":\"firebrick\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}},{\"x\":\"new Date('2020-02-19').getTime()\",\"y\":1547,\"marker\":{\"size\":10,\"fillColor\":\"#FFF\",\"strokeColor\":\"firebrick\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}},{\"x\":\"new Date('2020-02-27').getTime()\",\"y\":1631,\"marker\":{\"size\":10,\"fillColor\":\"#FFF\",\"strokeColor\":\"firebrick\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2020-01-01\",\"max\":\"2020-02-29\"},\"type\":\"spline\"},\"evals\":[\"ax_opts.annotations.points.0.x\",\"ax_opts.annotations.points.1.x\",\"ax_opts.annotations.points.2.x\",\"ax_opts.annotations.points.3.x\",\"ax_opts.annotations.points.4.x\",\"ax_opts.annotations.points.5.x\",\"ax_opts.annotations.points.6.x\",\"ax_opts.annotations.points.7.x\",\"ax_opts.annotations.points.8.x\"],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/add_point.html","id":null,"dir":"Reference","previous_headings":"","what":"Add an annotation point — add_point","title":"Add an annotation point — add_point","text":"Add annotation point","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add_point.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Add an annotation point — add_point","text":"","code":"add_point( ax, x, y, size = 5, color = \"#000\", fill = \"#FFF\", width = 2, shape = \"circle\", radius = 2, label = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/add_point.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Add an annotation point — add_point","text":"ax apexchart() htmlwidget object. x Coordinate(s) x-axis. y Coordinate(s) y-axis. size Size marker. color Stroke Color marker point. fill Fill Color marker point. width Stroke Size marker point. shape Shape marker: \"circle\" \"square\". radius Radius marker (applies square shape). label Add label shade, use character see label controls. ... Additional arguments, see https://apexcharts.com/docs/options/annotations/ possible options.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/add_point.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Add an annotation point — add_point","text":"apexchart()htmlwidget object.","code":""},{"path":[]},{"path":"https://dreamrs.github.io/apexcharter/reference/add_point.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Add an annotation point — add_point","text":"","code":"library(apexcharter) # On scatter chart apex( data = iris, aes(Sepal.Length, Sepal.Width), \"scatter\" ) %>% add_point( x = mean(iris$Sepal.Length), y = mean(iris$Sepal.Width) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"scatter\"},\"series\":[{\"name\":\"Sepal.Width\",\"type\":\"scatter\",\"data\":[{\"x\":5.1,\"y\":3.5},{\"x\":4.9,\"y\":3},{\"x\":4.7,\"y\":3.2},{\"x\":4.6,\"y\":3.1},{\"x\":5,\"y\":3.6},{\"x\":5.4,\"y\":3.9},{\"x\":4.6,\"y\":3.4},{\"x\":5,\"y\":3.4},{\"x\":4.4,\"y\":2.9},{\"x\":4.9,\"y\":3.1},{\"x\":5.4,\"y\":3.7},{\"x\":4.8,\"y\":3.4},{\"x\":4.8,\"y\":3},{\"x\":4.3,\"y\":3},{\"x\":5.8,\"y\":4},{\"x\":5.7,\"y\":4.4},{\"x\":5.4,\"y\":3.9},{\"x\":5.1,\"y\":3.5},{\"x\":5.7,\"y\":3.8},{\"x\":5.1,\"y\":3.8},{\"x\":5.4,\"y\":3.4},{\"x\":5.1,\"y\":3.7},{\"x\":4.6,\"y\":3.6},{\"x\":5.1,\"y\":3.3},{\"x\":4.8,\"y\":3.4},{\"x\":5,\"y\":3},{\"x\":5,\"y\":3.4},{\"x\":5.2,\"y\":3.5},{\"x\":5.2,\"y\":3.4},{\"x\":4.7,\"y\":3.2},{\"x\":4.8,\"y\":3.1},{\"x\":5.4,\"y\":3.4},{\"x\":5.2,\"y\":4.1},{\"x\":5.5,\"y\":4.2},{\"x\":4.9,\"y\":3.1},{\"x\":5,\"y\":3.2},{\"x\":5.5,\"y\":3.5},{\"x\":4.9,\"y\":3.6},{\"x\":4.4,\"y\":3},{\"x\":5.1,\"y\":3.4},{\"x\":5,\"y\":3.5},{\"x\":4.5,\"y\":2.3},{\"x\":4.4,\"y\":3.2},{\"x\":5,\"y\":3.5},{\"x\":5.1,\"y\":3.8},{\"x\":4.8,\"y\":3},{\"x\":5.1,\"y\":3.8},{\"x\":4.6,\"y\":3.2},{\"x\":5.3,\"y\":3.7},{\"x\":5,\"y\":3.3},{\"x\":7,\"y\":3.2},{\"x\":6.4,\"y\":3.2},{\"x\":6.9,\"y\":3.1},{\"x\":5.5,\"y\":2.3},{\"x\":6.5,\"y\":2.8},{\"x\":5.7,\"y\":2.8},{\"x\":6.3,\"y\":3.3},{\"x\":4.9,\"y\":2.4},{\"x\":6.6,\"y\":2.9},{\"x\":5.2,\"y\":2.7},{\"x\":5,\"y\":2},{\"x\":5.9,\"y\":3},{\"x\":6,\"y\":2.2},{\"x\":6.1,\"y\":2.9},{\"x\":5.6,\"y\":2.9},{\"x\":6.7,\"y\":3.1},{\"x\":5.6,\"y\":3},{\"x\":5.8,\"y\":2.7},{\"x\":6.2,\"y\":2.2},{\"x\":5.6,\"y\":2.5},{\"x\":5.9,\"y\":3.2},{\"x\":6.1,\"y\":2.8},{\"x\":6.3,\"y\":2.5},{\"x\":6.1,\"y\":2.8},{\"x\":6.4,\"y\":2.9},{\"x\":6.6,\"y\":3},{\"x\":6.8,\"y\":2.8},{\"x\":6.7,\"y\":3},{\"x\":6,\"y\":2.9},{\"x\":5.7,\"y\":2.6},{\"x\":5.5,\"y\":2.4},{\"x\":5.5,\"y\":2.4},{\"x\":5.8,\"y\":2.7},{\"x\":6,\"y\":2.7},{\"x\":5.4,\"y\":3},{\"x\":6,\"y\":3.4},{\"x\":6.7,\"y\":3.1},{\"x\":6.3,\"y\":2.3},{\"x\":5.6,\"y\":3},{\"x\":5.5,\"y\":2.5},{\"x\":5.5,\"y\":2.6},{\"x\":6.1,\"y\":3},{\"x\":5.8,\"y\":2.6},{\"x\":5,\"y\":2.3},{\"x\":5.6,\"y\":2.7},{\"x\":5.7,\"y\":3},{\"x\":5.7,\"y\":2.9},{\"x\":6.2,\"y\":2.9},{\"x\":5.1,\"y\":2.5},{\"x\":5.7,\"y\":2.8},{\"x\":6.3,\"y\":3.3},{\"x\":5.8,\"y\":2.7},{\"x\":7.1,\"y\":3},{\"x\":6.3,\"y\":2.9},{\"x\":6.5,\"y\":3},{\"x\":7.6,\"y\":3},{\"x\":4.9,\"y\":2.5},{\"x\":7.3,\"y\":2.9},{\"x\":6.7,\"y\":2.5},{\"x\":7.2,\"y\":3.6},{\"x\":6.5,\"y\":3.2},{\"x\":6.4,\"y\":2.7},{\"x\":6.8,\"y\":3},{\"x\":5.7,\"y\":2.5},{\"x\":5.8,\"y\":2.8},{\"x\":6.4,\"y\":3.2},{\"x\":6.5,\"y\":3},{\"x\":7.7,\"y\":3.8},{\"x\":7.7,\"y\":2.6},{\"x\":6,\"y\":2.2},{\"x\":6.9,\"y\":3.2},{\"x\":5.6,\"y\":2.8},{\"x\":7.7,\"y\":2.8},{\"x\":6.3,\"y\":2.7},{\"x\":6.7,\"y\":3.3},{\"x\":7.2,\"y\":3.2},{\"x\":6.2,\"y\":2.8},{\"x\":6.1,\"y\":3},{\"x\":6.4,\"y\":2.8},{\"x\":7.2,\"y\":3},{\"x\":7.4,\"y\":2.8},{\"x\":7.9,\"y\":3.8},{\"x\":6.4,\"y\":2.8},{\"x\":6.3,\"y\":2.8},{\"x\":6.1,\"y\":2.6},{\"x\":7.7,\"y\":3},{\"x\":6.3,\"y\":3.4},{\"x\":6.4,\"y\":3.1},{\"x\":6,\"y\":3},{\"x\":6.9,\"y\":3.1},{\"x\":6.7,\"y\":3.1},{\"x\":6.9,\"y\":3.1},{\"x\":5.8,\"y\":2.7},{\"x\":6.8,\"y\":3.2},{\"x\":6.7,\"y\":3.3},{\"x\":6.7,\"y\":3},{\"x\":6.3,\"y\":2.5},{\"x\":6.5,\"y\":3},{\"x\":6.2,\"y\":3.4},{\"x\":5.9,\"y\":3}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":4,\"max\":8,\"tickAmount\":4,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":2,\"max\":4.5,\"tickAmount\":5,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"annotations\":{\"position\":\"front\",\"points\":[{\"x\":5.84333333333333,\"y\":3.05733333333333,\"marker\":{\"size\":5,\"fillColor\":\"#FFF\",\"strokeColor\":\"#000\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":4.3,\"max\":7.9},\"type\":\"scatter\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} # Some options apex( data = iris, aes(Sepal.Length, Sepal.Width), \"scatter\" ) %>% add_point( x = mean(iris$Sepal.Length), y = mean(iris$Sepal.Width), fill = \"firebrick\", color = \"firebrick\", size = 8, label = label(text = \"Mean\", offsetY = 0) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"scatter\"},\"series\":[{\"name\":\"Sepal.Width\",\"type\":\"scatter\",\"data\":[{\"x\":5.1,\"y\":3.5},{\"x\":4.9,\"y\":3},{\"x\":4.7,\"y\":3.2},{\"x\":4.6,\"y\":3.1},{\"x\":5,\"y\":3.6},{\"x\":5.4,\"y\":3.9},{\"x\":4.6,\"y\":3.4},{\"x\":5,\"y\":3.4},{\"x\":4.4,\"y\":2.9},{\"x\":4.9,\"y\":3.1},{\"x\":5.4,\"y\":3.7},{\"x\":4.8,\"y\":3.4},{\"x\":4.8,\"y\":3},{\"x\":4.3,\"y\":3},{\"x\":5.8,\"y\":4},{\"x\":5.7,\"y\":4.4},{\"x\":5.4,\"y\":3.9},{\"x\":5.1,\"y\":3.5},{\"x\":5.7,\"y\":3.8},{\"x\":5.1,\"y\":3.8},{\"x\":5.4,\"y\":3.4},{\"x\":5.1,\"y\":3.7},{\"x\":4.6,\"y\":3.6},{\"x\":5.1,\"y\":3.3},{\"x\":4.8,\"y\":3.4},{\"x\":5,\"y\":3},{\"x\":5,\"y\":3.4},{\"x\":5.2,\"y\":3.5},{\"x\":5.2,\"y\":3.4},{\"x\":4.7,\"y\":3.2},{\"x\":4.8,\"y\":3.1},{\"x\":5.4,\"y\":3.4},{\"x\":5.2,\"y\":4.1},{\"x\":5.5,\"y\":4.2},{\"x\":4.9,\"y\":3.1},{\"x\":5,\"y\":3.2},{\"x\":5.5,\"y\":3.5},{\"x\":4.9,\"y\":3.6},{\"x\":4.4,\"y\":3},{\"x\":5.1,\"y\":3.4},{\"x\":5,\"y\":3.5},{\"x\":4.5,\"y\":2.3},{\"x\":4.4,\"y\":3.2},{\"x\":5,\"y\":3.5},{\"x\":5.1,\"y\":3.8},{\"x\":4.8,\"y\":3},{\"x\":5.1,\"y\":3.8},{\"x\":4.6,\"y\":3.2},{\"x\":5.3,\"y\":3.7},{\"x\":5,\"y\":3.3},{\"x\":7,\"y\":3.2},{\"x\":6.4,\"y\":3.2},{\"x\":6.9,\"y\":3.1},{\"x\":5.5,\"y\":2.3},{\"x\":6.5,\"y\":2.8},{\"x\":5.7,\"y\":2.8},{\"x\":6.3,\"y\":3.3},{\"x\":4.9,\"y\":2.4},{\"x\":6.6,\"y\":2.9},{\"x\":5.2,\"y\":2.7},{\"x\":5,\"y\":2},{\"x\":5.9,\"y\":3},{\"x\":6,\"y\":2.2},{\"x\":6.1,\"y\":2.9},{\"x\":5.6,\"y\":2.9},{\"x\":6.7,\"y\":3.1},{\"x\":5.6,\"y\":3},{\"x\":5.8,\"y\":2.7},{\"x\":6.2,\"y\":2.2},{\"x\":5.6,\"y\":2.5},{\"x\":5.9,\"y\":3.2},{\"x\":6.1,\"y\":2.8},{\"x\":6.3,\"y\":2.5},{\"x\":6.1,\"y\":2.8},{\"x\":6.4,\"y\":2.9},{\"x\":6.6,\"y\":3},{\"x\":6.8,\"y\":2.8},{\"x\":6.7,\"y\":3},{\"x\":6,\"y\":2.9},{\"x\":5.7,\"y\":2.6},{\"x\":5.5,\"y\":2.4},{\"x\":5.5,\"y\":2.4},{\"x\":5.8,\"y\":2.7},{\"x\":6,\"y\":2.7},{\"x\":5.4,\"y\":3},{\"x\":6,\"y\":3.4},{\"x\":6.7,\"y\":3.1},{\"x\":6.3,\"y\":2.3},{\"x\":5.6,\"y\":3},{\"x\":5.5,\"y\":2.5},{\"x\":5.5,\"y\":2.6},{\"x\":6.1,\"y\":3},{\"x\":5.8,\"y\":2.6},{\"x\":5,\"y\":2.3},{\"x\":5.6,\"y\":2.7},{\"x\":5.7,\"y\":3},{\"x\":5.7,\"y\":2.9},{\"x\":6.2,\"y\":2.9},{\"x\":5.1,\"y\":2.5},{\"x\":5.7,\"y\":2.8},{\"x\":6.3,\"y\":3.3},{\"x\":5.8,\"y\":2.7},{\"x\":7.1,\"y\":3},{\"x\":6.3,\"y\":2.9},{\"x\":6.5,\"y\":3},{\"x\":7.6,\"y\":3},{\"x\":4.9,\"y\":2.5},{\"x\":7.3,\"y\":2.9},{\"x\":6.7,\"y\":2.5},{\"x\":7.2,\"y\":3.6},{\"x\":6.5,\"y\":3.2},{\"x\":6.4,\"y\":2.7},{\"x\":6.8,\"y\":3},{\"x\":5.7,\"y\":2.5},{\"x\":5.8,\"y\":2.8},{\"x\":6.4,\"y\":3.2},{\"x\":6.5,\"y\":3},{\"x\":7.7,\"y\":3.8},{\"x\":7.7,\"y\":2.6},{\"x\":6,\"y\":2.2},{\"x\":6.9,\"y\":3.2},{\"x\":5.6,\"y\":2.8},{\"x\":7.7,\"y\":2.8},{\"x\":6.3,\"y\":2.7},{\"x\":6.7,\"y\":3.3},{\"x\":7.2,\"y\":3.2},{\"x\":6.2,\"y\":2.8},{\"x\":6.1,\"y\":3},{\"x\":6.4,\"y\":2.8},{\"x\":7.2,\"y\":3},{\"x\":7.4,\"y\":2.8},{\"x\":7.9,\"y\":3.8},{\"x\":6.4,\"y\":2.8},{\"x\":6.3,\"y\":2.8},{\"x\":6.1,\"y\":2.6},{\"x\":7.7,\"y\":3},{\"x\":6.3,\"y\":3.4},{\"x\":6.4,\"y\":3.1},{\"x\":6,\"y\":3},{\"x\":6.9,\"y\":3.1},{\"x\":6.7,\"y\":3.1},{\"x\":6.9,\"y\":3.1},{\"x\":5.8,\"y\":2.7},{\"x\":6.8,\"y\":3.2},{\"x\":6.7,\"y\":3.3},{\"x\":6.7,\"y\":3},{\"x\":6.3,\"y\":2.5},{\"x\":6.5,\"y\":3},{\"x\":6.2,\"y\":3.4},{\"x\":5.9,\"y\":3}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":4,\"max\":8,\"tickAmount\":4,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":2,\"max\":4.5,\"tickAmount\":5,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"annotations\":{\"position\":\"front\",\"points\":[{\"x\":5.84333333333333,\"y\":3.05733333333333,\"marker\":{\"size\":8,\"fillColor\":\"firebrick\",\"strokeColor\":\"firebrick\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2},\"label\":{\"text\":\"Mean\",\"offsetY\":0,\"style\":{\"padding\":{\"top\":2,\"right\":5,\"bottom\":2,\"left\":5}}}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":4.3,\"max\":7.9},\"type\":\"scatter\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} # Several points clusters <- kmeans(iris[, 1:2], 3) apex( data = iris, aes(Sepal.Length, Sepal.Width), \"scatter\" ) %>% add_point( x = clusters$centers[, 1], y = clusters$centers[, 2] ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"scatter\"},\"series\":[{\"name\":\"Sepal.Width\",\"type\":\"scatter\",\"data\":[{\"x\":5.1,\"y\":3.5},{\"x\":4.9,\"y\":3},{\"x\":4.7,\"y\":3.2},{\"x\":4.6,\"y\":3.1},{\"x\":5,\"y\":3.6},{\"x\":5.4,\"y\":3.9},{\"x\":4.6,\"y\":3.4},{\"x\":5,\"y\":3.4},{\"x\":4.4,\"y\":2.9},{\"x\":4.9,\"y\":3.1},{\"x\":5.4,\"y\":3.7},{\"x\":4.8,\"y\":3.4},{\"x\":4.8,\"y\":3},{\"x\":4.3,\"y\":3},{\"x\":5.8,\"y\":4},{\"x\":5.7,\"y\":4.4},{\"x\":5.4,\"y\":3.9},{\"x\":5.1,\"y\":3.5},{\"x\":5.7,\"y\":3.8},{\"x\":5.1,\"y\":3.8},{\"x\":5.4,\"y\":3.4},{\"x\":5.1,\"y\":3.7},{\"x\":4.6,\"y\":3.6},{\"x\":5.1,\"y\":3.3},{\"x\":4.8,\"y\":3.4},{\"x\":5,\"y\":3},{\"x\":5,\"y\":3.4},{\"x\":5.2,\"y\":3.5},{\"x\":5.2,\"y\":3.4},{\"x\":4.7,\"y\":3.2},{\"x\":4.8,\"y\":3.1},{\"x\":5.4,\"y\":3.4},{\"x\":5.2,\"y\":4.1},{\"x\":5.5,\"y\":4.2},{\"x\":4.9,\"y\":3.1},{\"x\":5,\"y\":3.2},{\"x\":5.5,\"y\":3.5},{\"x\":4.9,\"y\":3.6},{\"x\":4.4,\"y\":3},{\"x\":5.1,\"y\":3.4},{\"x\":5,\"y\":3.5},{\"x\":4.5,\"y\":2.3},{\"x\":4.4,\"y\":3.2},{\"x\":5,\"y\":3.5},{\"x\":5.1,\"y\":3.8},{\"x\":4.8,\"y\":3},{\"x\":5.1,\"y\":3.8},{\"x\":4.6,\"y\":3.2},{\"x\":5.3,\"y\":3.7},{\"x\":5,\"y\":3.3},{\"x\":7,\"y\":3.2},{\"x\":6.4,\"y\":3.2},{\"x\":6.9,\"y\":3.1},{\"x\":5.5,\"y\":2.3},{\"x\":6.5,\"y\":2.8},{\"x\":5.7,\"y\":2.8},{\"x\":6.3,\"y\":3.3},{\"x\":4.9,\"y\":2.4},{\"x\":6.6,\"y\":2.9},{\"x\":5.2,\"y\":2.7},{\"x\":5,\"y\":2},{\"x\":5.9,\"y\":3},{\"x\":6,\"y\":2.2},{\"x\":6.1,\"y\":2.9},{\"x\":5.6,\"y\":2.9},{\"x\":6.7,\"y\":3.1},{\"x\":5.6,\"y\":3},{\"x\":5.8,\"y\":2.7},{\"x\":6.2,\"y\":2.2},{\"x\":5.6,\"y\":2.5},{\"x\":5.9,\"y\":3.2},{\"x\":6.1,\"y\":2.8},{\"x\":6.3,\"y\":2.5},{\"x\":6.1,\"y\":2.8},{\"x\":6.4,\"y\":2.9},{\"x\":6.6,\"y\":3},{\"x\":6.8,\"y\":2.8},{\"x\":6.7,\"y\":3},{\"x\":6,\"y\":2.9},{\"x\":5.7,\"y\":2.6},{\"x\":5.5,\"y\":2.4},{\"x\":5.5,\"y\":2.4},{\"x\":5.8,\"y\":2.7},{\"x\":6,\"y\":2.7},{\"x\":5.4,\"y\":3},{\"x\":6,\"y\":3.4},{\"x\":6.7,\"y\":3.1},{\"x\":6.3,\"y\":2.3},{\"x\":5.6,\"y\":3},{\"x\":5.5,\"y\":2.5},{\"x\":5.5,\"y\":2.6},{\"x\":6.1,\"y\":3},{\"x\":5.8,\"y\":2.6},{\"x\":5,\"y\":2.3},{\"x\":5.6,\"y\":2.7},{\"x\":5.7,\"y\":3},{\"x\":5.7,\"y\":2.9},{\"x\":6.2,\"y\":2.9},{\"x\":5.1,\"y\":2.5},{\"x\":5.7,\"y\":2.8},{\"x\":6.3,\"y\":3.3},{\"x\":5.8,\"y\":2.7},{\"x\":7.1,\"y\":3},{\"x\":6.3,\"y\":2.9},{\"x\":6.5,\"y\":3},{\"x\":7.6,\"y\":3},{\"x\":4.9,\"y\":2.5},{\"x\":7.3,\"y\":2.9},{\"x\":6.7,\"y\":2.5},{\"x\":7.2,\"y\":3.6},{\"x\":6.5,\"y\":3.2},{\"x\":6.4,\"y\":2.7},{\"x\":6.8,\"y\":3},{\"x\":5.7,\"y\":2.5},{\"x\":5.8,\"y\":2.8},{\"x\":6.4,\"y\":3.2},{\"x\":6.5,\"y\":3},{\"x\":7.7,\"y\":3.8},{\"x\":7.7,\"y\":2.6},{\"x\":6,\"y\":2.2},{\"x\":6.9,\"y\":3.2},{\"x\":5.6,\"y\":2.8},{\"x\":7.7,\"y\":2.8},{\"x\":6.3,\"y\":2.7},{\"x\":6.7,\"y\":3.3},{\"x\":7.2,\"y\":3.2},{\"x\":6.2,\"y\":2.8},{\"x\":6.1,\"y\":3},{\"x\":6.4,\"y\":2.8},{\"x\":7.2,\"y\":3},{\"x\":7.4,\"y\":2.8},{\"x\":7.9,\"y\":3.8},{\"x\":6.4,\"y\":2.8},{\"x\":6.3,\"y\":2.8},{\"x\":6.1,\"y\":2.6},{\"x\":7.7,\"y\":3},{\"x\":6.3,\"y\":3.4},{\"x\":6.4,\"y\":3.1},{\"x\":6,\"y\":3},{\"x\":6.9,\"y\":3.1},{\"x\":6.7,\"y\":3.1},{\"x\":6.9,\"y\":3.1},{\"x\":5.8,\"y\":2.7},{\"x\":6.8,\"y\":3.2},{\"x\":6.7,\"y\":3.3},{\"x\":6.7,\"y\":3},{\"x\":6.3,\"y\":2.5},{\"x\":6.5,\"y\":3},{\"x\":6.2,\"y\":3.4},{\"x\":5.9,\"y\":3}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":4,\"max\":8,\"tickAmount\":4,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":2,\"max\":4.5,\"tickAmount\":5,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"annotations\":{\"position\":\"front\",\"points\":[{\"x\":5.006,\"y\":3.428,\"marker\":{\"size\":5,\"fillColor\":\"#FFF\",\"strokeColor\":\"#000\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}},{\"x\":6.81276595744681,\"y\":3.07446808510638,\"marker\":{\"size\":5,\"fillColor\":\"#FFF\",\"strokeColor\":\"#000\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}},{\"x\":5.77358490566038,\"y\":2.69245283018868,\"marker\":{\"size\":5,\"fillColor\":\"#FFF\",\"strokeColor\":\"#000\",\"strokeWidth\":2,\"shape\":\"circle\",\"radius\":2}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":4.3,\"max\":7.9},\"type\":\"scatter\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/apex-facets.html","id":null,"dir":"Reference","previous_headings":"","what":"Facets for ApexCharts — apex-facets","title":"Facets for ApexCharts — apex-facets","text":"Create matrix charts row column faceting variable (ax_facet_grid), specified number row column faceting variable(s) (ax_facet_wrap).","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apex-facets.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Facets for ApexCharts — apex-facets","text":"","code":"ax_facet_wrap( ax, facets, nrow = NULL, ncol = NULL, scales = c(\"fixed\", \"free\", \"free_y\", \"free_x\"), labeller = label_value, chart_height = \"300px\" ) ax_facet_grid( ax, rows = NULL, cols = NULL, scales = c(\"fixed\", \"free\", \"free_y\", \"free_x\"), labeller = label_value, chart_height = \"300px\" )"},{"path":"https://dreamrs.github.io/apexcharter/reference/apex-facets.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Facets for ApexCharts — apex-facets","text":"ax apexchart() htmlwidget object. facets Variable(s) use facetting, wrapped vars(...). nrow, ncol Number row column output matrix. scales scales fixed (\"fixed\", default), free (\"free\"), free one dimension (\"free_x\", \"free_y\")? labeller function one argument containing facet value faceting variable. chart_height Individual chart height. rows, cols set variables expressions quoted vars() defining faceting groups rows columns dimension.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apex-facets.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Facets for ApexCharts — apex-facets","text":"apexchart()htmlwidget object additionnal class \"apex_facet\".","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apex-facets.html","id":"warning","dir":"Reference","previous_headings":"","what":"Warning","title":"Facets for ApexCharts — apex-facets","text":"properly render Shiny applications, use apexfacetOutput() (UI) renderApexfacet() (Server).","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apex-facets.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Facets for ApexCharts — apex-facets","text":"","code":"### Wrap -------- if (interactive()) { library(apexcharter) # Scatter ---- data(\"mpg\", package = \"ggplot2\") # Create facets apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_facet_wrap(vars(drv)) # Change number of columns apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_facet_wrap(vars(drv), ncol = 2) # Free axis apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_facet_wrap(vars(drv), ncol = 2, scales = \"free\") # labels apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_facet_wrap( vars(drv), ncol = 2, labeller = function(x) { switch( x, \"f\" = \"front-wheel drive\", \"r\" = \"rear wheel drive\", \"4\" = \"4wd\" ) } ) # Title and subtitle are treated as global apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_labs( title = \"Facet wrap example\", subtitle = \"mpg data from ggplot2\" ) %>% ax_facet_wrap(vars(drv), ncol = 2) # Multiple variables apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_facet_wrap(vars(year, drv)) apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_facet_wrap(vars(year, drv), ncol = 2, nrow = 3) apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_chart(toolbar = list(show = FALSE)) %>% ax_facet_wrap( vars(year, drv), labeller = function(x) { paste(x, collapse = \" / \") } ) # Lines ---- data(\"unhcr_ts\") refugees <- unhcr_ts %>% subset(population_type == \"Refugees (incl. refugee-like situations)\") %>% transform(date = as.Date(paste0(year, \"-01-01\"))) apex(refugees, aes(date, n), type = \"line\") %>% ax_yaxis(tickAmount = 5) %>% ax_facet_wrap(vars(continent_origin)) # Free y-axis and synchronize apex(refugees, aes(date, n), type = \"line\", synchronize = \"my-id\") %>% ax_yaxis(tickAmount = 5) %>% ax_xaxis(tooltip = list(enabled = FALSE)) %>% ax_tooltip(x = list(format = \"yyyy\")) %>% ax_facet_wrap(vars(continent_origin), scales = \"free_y\") # Bars ---- data(\"unhcr_ts\") refugees <- unhcr_ts %>% subset(year == 2017) apex(refugees, aes(continent_origin, n), type = \"column\") %>% ax_yaxis( labels = list( formatter = format_num(\"~s\") ), tickAmount = 5 ) %>% ax_facet_wrap(vars(population_type), ncol = 2) } ### Grid -------- if (interactive()) { library(apexcharter) # Scatter ---- data(\"mpg\", package = \"ggplot2\") # Only rows apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_facet_grid(rows = vars(drv), chart_height = \"200px\") # Only cols apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_facet_grid(cols = vars(year)) # Rows and Cols apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_facet_grid(rows = vars(drv), cols = vars(year)) apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_chart(toolbar = list(show = FALSE)) %>% ax_facet_grid(vars(drv), vars(cyl)) # Labels apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_facet_grid( vars(drv), labeller = function(x) { switch( x, \"f\" = \"front-wheel drive\", \"r\" = \"rear wheel drive\", \"4\" = \"4wd\" ) } ) # Title and subtitle are treated as global apex(mpg, aes(displ, cty), type = \"scatter\") %>% ax_labs( title = \"Facet grid example\", subtitle = \"mpg data from ggplot2\" ) %>% ax_facet_grid(rows = vars(drv), cols = vars(year)) }"},{"path":"https://dreamrs.github.io/apexcharter/reference/apex.html","id":null,"dir":"Reference","previous_headings":"","what":"Quick ApexCharts — apex","title":"Quick ApexCharts — apex","text":"Initialize chart three main parameters : data, mapping type chart.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apex.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Quick ApexCharts — apex","text":"","code":"apex( data, mapping, type = \"column\", ..., auto_update = TRUE, synchronize = NULL, serie_name = NULL, width = NULL, height = NULL, elementId = NULL )"},{"path":"https://dreamrs.github.io/apexcharter/reference/apex.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Quick ApexCharts — apex","text":"data Default dataset use chart. already data.frame, coerced .data.frame. mapping Default list aesthetic mappings use chart type Specify chart type. Available options: \"column\", \"bar\", \"line\", \"step\", \"spline\", \"area\", \"area-step\", \"area-spline\", \"pie\", \"donut\", \"radialBar\", \"radar\", \"scatter\", \"heatmap\", \"treemap\", \"timeline\". ... arguments passed methods. currently used. auto_update Shiny application, update existing chart rather generating new one. Can TRUE/FALSE use config_update() control. synchronize Give common id charts synchronize (tooltip zoom). serie_name Name serie displayed tooltip, used single serie. width numeric input pixels. height numeric input pixels. elementId Use explicit element ID widget.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apex.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Quick ApexCharts — apex","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apex.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Quick ApexCharts — apex","text":"","code":"library(ggplot2) library(apexcharter) # make a barchart with a frequency table data(\"mpg\", package = \"ggplot2\") apex(mpg, aes(manufacturer), type = \"bar\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":[],\"data\":[{\"x\":\"audi\",\"y\":18},{\"x\":\"chevrolet\",\"y\":19},{\"x\":\"dodge\",\"y\":37},{\"x\":\"ford\",\"y\":25},{\"x\":\"honda\",\"y\":9},{\"x\":\"hyundai\",\"y\":14},{\"x\":\"jeep\",\"y\":8},{\"x\":\"land rover\",\"y\":4},{\"x\":\"lincoln\",\"y\":3},{\"x\":\"mercury\",\"y\":4},{\"x\":\"nissan\",\"y\":13},{\"x\":\"pontiac\",\"y\":5},{\"x\":\"subaru\",\"y\":14},{\"x\":\"toyota\",\"y\":34},{\"x\":\"volkswagen\",\"y\":27}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":true}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":false}},\"xaxis\":{\"lines\":{\"show\":true}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"bar\"},\"evals\":[],\"jsHooks\":[]} # timeseries data(\"economics\", package = \"ggplot2\") apex( data = economics, mapping = aes(x = date, y = uempmed), type = \"line\" ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[-79056000000,4.5],[-76377600000,4.7],[-73699200000,4.6],[-71107200000,4.9],[-68428800000,4.7],[-65836800000,4.8],[-63158400000,5.1],[-60480000000,4.5],[-57974400000,4.1],[-55296000000,4.6],[-52704000000,4.4],[-50025600000,4.4],[-47433600000,4.5],[-44755200000,4.2],[-42076800000,4.6],[-39484800000,4.8],[-36806400000,4.4],[-34214400000,4.4],[-31536000000,4.4],[-28857600000,4.9],[-26438400000,4],[-23760000000,4],[-21168000000,4.2],[-18489600000,4.4],[-15897600000,4.4],[-13219200000,4.4],[-10540800000,4.7],[-7948800000,4.5],[-5270400000,4.8],[-2678400000,4.6],[0,4.6],[2678400000,4.5],[5097600000,4.6],[7776000000,4.1],[10368000000,4.7],[13046400000,4.9],[15638400000,5.1],[18316800000,5.4],[20995200000,5.2],[23587200000,5.2],[26265600000,5.6],[28857600000,5.9],[31536000000,6.2],[34214400000,6.3],[36633600000,6.4],[39312000000,6.5],[41904000000,6.7],[44582400000,5.7],[47174400000,6.2],[49852800000,6.4],[52531200000,5.8],[55123200000,6.5],[57801600000,6.4],[60393600000,6.2],[63072000000,6.2],[65750400000,6.6],[68256000000,6.6],[70934400000,6.7],[73526400000,6.6],[76204800000,5.4],[78796800000,6.1],[81475200000,6],[84153600000,5.6],[86745600000,5.7],[89424000000,5.7],[92016000000,6.1],[94694400000,5.7],[97372800000,5.2],[99792000000,5.5],[102470400000,5],[105062400000,4.9],[107740800000,5],[110332800000,5.2],[113011200000,4.9],[115689600000,5.4],[118281600000,5.5],[120960000000,5.1],[123552000000,4.7],[126230400000,5],[128908800000,5.1],[131328000000,4.8],[134006400000,5],[136598400000,4.6],[139276800000,5.3],[141868800000,5.7],[144547200000,5],[147225600000,5.3],[149817600000,5.5],[152496000000,5.2],[155088000000,5.7],[157766400000,6.3],[160444800000,7.1],[162864000000,7.2],[165542400000,8.7],[168134400000,9.4],[170812800000,8.8],[173404800000,8.6],[176083200000,9.2],[178761600000,9.2],[181353600000,8.6],[184032000000,9.5],[186624000000,9],[189302400000,9],[191980800000,8.2],[194486400000,8.7],[197164800000,8.2],[199756800000,8.3],[202435200000,7.8],[205027200000,7.7],[207705600000,7.9],[210384000000,7.8],[212976000000,7.7],[215654400000,8.4],[218246400000,8],[220924800000,7.5],[223603200000,7.2],[226022400000,7.2],[228700800000,7.3],[231292800000,7.9],[233971200000,6.2],[236563200000,7.1],[239241600000,7],[241920000000,6.7],[244512000000,6.9],[247190400000,7],[249782400000,6.8],[252460800000,6.5],[255139200000,6.7],[257558400000,6.2],[260236800000,6.1],[262828800000,5.7],[265507200000,6],[268099200000,5.8],[270777600000,5.8],[273456000000,5.6],[276048000000,5.9],[278726400000,5.5],[281318400000,5.6],[283996800000,5.9],[286675200000,5.9],[289094400000,5.9],[291772800000,5.4],[294364800000,5.6],[297043200000,5.6],[299635200000,5.9],[302313600000,4.8],[304992000000,5.5],[307584000000,5.5],[310262400000,5.3],[312854400000,5.7],[315532800000,5.3],[318211200000,5.8],[320716800000,6],[323395200000,5.8],[325987200000,5.7],[328665600000,6.4],[331257600000,7],[333936000000,7.5],[336614400000,7.7],[339206400000,7.5],[341884800000,7.7],[344476800000,7.5],[347155200000,7.4],[349833600000,7.1],[352252800000,7.1],[354931200000,7.4],[357523200000,6.9],[360201600000,6.6],[362793600000,7.1],[365472000000,7.2],[368150400000,6.8],[370742400000,6.8],[373420800000,6.9],[376012800000,6.9],[378691200000,7.1],[381369600000,7.5],[383788800000,7.7],[386467200000,8.1],[389059200000,8.5],[391737600000,9.5],[394329600000,8.5],[397008000000,8.7],[399686400000,9.5],[402278400000,9.7],[404956800000,10],[407548800000,10.2],[410227200000,11.1],[412905600000,9.8],[415324800000,10.4],[418003200000,10.9],[420595200000,12.3],[423273600000,11.3],[425865600000,10.1],[428544000000,9.3],[431222400000,9.3],[433814400000,9.4],[436492800000,9.3],[439084800000,8.7],[441763200000,9.1],[444441600000,8.3],[446947200000,8.3],[449625600000,8.2],[452217600000,9.1],[454896000000,7.5],[457488000000,7.5],[460166400000,7.3],[462844800000,7.6],[465436800000,7.2],[468115200000,7.2],[470707200000,7.3],[473385600000,6.8],[476064000000,7.1],[478483200000,7.1],[481161600000,6.9],[483753600000,6.9],[486432000000,6.6],[489024000000,6.9],[491702400000,7.1],[494380800000,6.9],[496972800000,7.1],[499651200000,7],[502243200000,6.8],[504921600000,6.7],[507600000000,6.9],[510019200000,6.8],[512697600000,6.7],[515289600000,6.8],[517968000000,7],[520560000000,6.9],[523238400000,7.1],[525916800000,7.4],[528508800000,7],[531187200000,7.1],[533779200000,7.1],[536457600000,6.9],[539136000000,6.6],[541555200000,6.6],[544233600000,7.1],[546825600000,6.6],[549504000000,6.5],[552096000000,6.5],[554774400000,6.4],[557452800000,6],[560044800000,6.3],[562723200000,6.2],[565315200000,6],[567993600000,6.2],[570672000000,6.3],[573177600000,6.4],[575856000000,5.9],[578448000000,5.9],[581126400000,5.8],[583718400000,6.1],[586396800000,5.9],[589075200000,5.7],[591667200000,5.6],[594345600000,5.7],[596937600000,5.9],[599616000000,5.6],[602294400000,5.4],[604713600000,5.4],[607392000000,5.4],[609984000000,5.3],[612662400000,5.4],[615254400000,5.6],[617932800000,5],[620611200000,4.9],[623203200000,4.9],[625881600000,4.8],[628473600000,4.9],[631152000000,5.1],[633830400000,5.3],[636249600000,5.1],[638928000000,4.8],[641520000000,5.2],[644198400000,5.2],[646790400000,5.4],[649468800000,5.4],[652147200000,5.6],[654739200000,5.8],[657417600000,5.7],[660009600000,5.9],[662688000000,6],[665366400000,6.2],[667785600000,6.7],[670464000000,6.6],[673056000000,6.4],[675734400000,6.9],[678326400000,7],[681004800000,7.3],[683683200000,6.8],[686275200000,7.2],[688953600000,7.5],[691545600000,7.8],[694224000000,8.1],[696902400000,8.2],[699408000000,8.3],[702086400000,8.5],[704678400000,8.8],[707356800000,8.7],[709948800000,8.6],[712627200000,8.8],[715305600000,8.6],[717897600000,9],[720576000000,9],[723168000000,9.3],[725846400000,8.6],[728524800000,8.5],[730944000000,8.5],[733622400000,8.4],[736214400000,8.1],[738892800000,8.3],[741484800000,8.2],[744163200000,8.2],[746841600000,8.3],[749433600000,8],[752112000000,8.3],[754704000000,8.3],[757382400000,8.6],[760060800000,9.2],[762480000000,9.3],[765158400000,9.1],[767750400000,9.2],[770428800000,9.3],[773020800000,9],[775699200000,8.9],[778377600000,9.2],[780969600000,10],[783648000000,9],[786240000000,8.7],[788918400000,8],[791596800000,8.1],[794016000000,8.3],[796694400000,8.3],[799286400000,9.1],[801964800000,7.9],[804556800000,8.5],[807235200000,8.3],[809913600000,7.9],[812505600000,8.2],[815184000000,8],[817776000000,8.3],[820454400000,8.3],[823132800000,7.8],[825638400000,8.3],[828316800000,8.6],[830908800000,8.6],[833587200000,8.3],[836179200000,8.3],[838857600000,8.4],[841536000000,8.5],[844128000000,8.3],[846806400000,7.7],[849398400000,7.8],[852076800000,7.8],[854755200000,8.1],[857174400000,7.9],[859852800000,8.3],[862444800000,8],[865123200000,8],[867715200000,8.3],[870393600000,7.8],[873072000000,8.2],[875664000000,7.7],[878342400000,7.6],[880934400000,7.5],[883612800000,7.4],[886291200000,7],[888710400000,6.8],[891388800000,6.7],[893980800000,6],[896659200000,6.9],[899251200000,6.7],[901929600000,6.8],[904608000000,6.7],[907200000000,5.8],[909878400000,6.6],[912470400000,6.8],[915148800000,6.9],[917827200000,6.8],[920246400000,6.8],[922924800000,6.2],[925516800000,6.5],[928195200000,6.3],[930787200000,5.8],[933465600000,6.5],[936144000000,6],[938736000000,6.1],[941414400000,6.2],[944006400000,5.8],[946684800000,5.8],[949363200000,6.1],[951868800000,6],[954547200000,6.1],[957139200000,5.8],[959817600000,5.7],[962409600000,6],[965088000000,6.3],[967766400000,5.2],[970358400000,6.1],[973036800000,6.1],[975628800000,6],[978307200000,5.8],[980985600000,6.1],[983404800000,6.6],[986083200000,5.9],[988675200000,6.3],[991353600000,6],[993945600000,6.8],[996624000000,6.9],[999302400000,7.2],[1001894400000,7.3],[1004572800000,7.7],[1007164800000,8.2],[1009843200000,8.4],[1012521600000,8.3],[1014940800000,8.4],[1017619200000,8.9],[1020211200000,9.5],[1022889600000,11],[1025481600000,8.9],[1028160000000,9],[1030838400000,9.5],[1033430400000,9.6],[1036108800000,9.3],[1038700800000,9.6],[1041379200000,9.6],[1044057600000,9.5],[1046476800000,9.7],[1049155200000,10.2],[1051747200000,9.9],[1054425600000,11.5],[1057017600000,10.3],[1059696000000,10.1],[1062374400000,10.2],[1064966400000,10.4],[1067644800000,10.3],[1070236800000,10.4],[1072915200000,10.6],[1075593600000,10.2],[1078099200000,10.2],[1080777600000,9.5],[1083369600000,9.9],[1086048000000,11],[1088640000000,8.9],[1091318400000,9.2],[1093996800000,9.6],[1096588800000,9.5],[1099267200000,9.7],[1101859200000,9.5],[1104537600000,9.4],[1107216000000,9.2],[1109635200000,9.3],[1112313600000,9],[1114905600000,9.1],[1117584000000,9],[1120176000000,8.8],[1122854400000,9.2],[1125532800000,8.4],[1128124800000,8.6],[1130803200000,8.5],[1133395200000,8.7],[1136073600000,8.6],[1138752000000,9.1],[1141171200000,8.7],[1143849600000,8.4],[1146441600000,8.5],[1149120000000,7.3],[1151712000000,8],[1154390400000,8.4],[1157068800000,8],[1159660800000,7.9],[1162339200000,8.3],[1164931200000,7.5],[1167609600000,8.3],[1170288000000,8.5],[1172707200000,9.1],[1175385600000,8.6],[1177977600000,8.2],[1180656000000,7.7],[1183248000000,8.7],[1185926400000,8.8],[1188604800000,8.7],[1191196800000,8.4],[1193875200000,8.6],[1196467200000,8.4],[1199145600000,9],[1201824000000,8.7],[1204329600000,8.7],[1207008000000,9.4],[1209600000000,7.9],[1212278400000,9],[1214870400000,9.7],[1217548800000,9.7],[1220227200000,10.2],[1222819200000,10.4],[1225497600000,9.8],[1228089600000,10.5],[1230768000000,10.7],[1233446400000,11.7],[1235865600000,12.3],[1238544000000,13.1],[1241136000000,14.2],[1243814400000,17.2],[1246406400000,16],[1249084800000,16.3],[1251763200000,17.8],[1254355200000,18.9],[1257033600000,19.8],[1259625600000,20.1],[1262304000000,20],[1264982400000,19.9],[1267401600000,20.4],[1270080000000,22.1],[1272672000000,22.3],[1275350400000,25.2],[1277942400000,22.3],[1280620800000,21],[1283299200000,20.3],[1285891200000,21.2],[1288569600000,21],[1291161600000,21.9],[1293840000000,21.5],[1296518400000,21.1],[1298937600000,21.5],[1301616000000,20.9],[1304208000000,21.6],[1306886400000,22.4],[1309478400000,22],[1312156800000,22.4],[1314835200000,22],[1317427200000,20.6],[1320105600000,20.8],[1322697600000,20.5],[1325376000000,20.8],[1328054400000,19.7],[1330560000000,19.2],[1333238400000,19.1],[1335830400000,19.9],[1338508800000,20.4],[1341100800000,17.5],[1343779200000,18.4],[1346457600000,18.8],[1349049600000,19.9],[1351728000000,18.6],[1354320000000,17.7],[1356998400000,15.8],[1359676800000,17.2],[1362096000000,17.6],[1364774400000,17.1],[1367366400000,17.1],[1370044800000,17],[1372636800000,16.2],[1375315200000,16.5],[1377993600000,16.5],[1380585600000,16.3],[1383264000000,17.1],[1385856000000,17.3],[1388534400000,15.4],[1391212800000,15.9],[1393632000000,15.8],[1396310400000,15.7],[1398902400000,14.6],[1401580800000,13.8],[1404172800000,13.1],[1406851200000,12.9],[1409529600000,13.4],[1412121600000,13.6],[1414800000000,13],[1417392000000,12.9],[1420070400000,13.2],[1422748800000,12.9],[1425168000000,12],[1427846400000,11.5]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]} # you can add option to apex result : apex( data = economics, mapping = aes(x = date, y = uempmed), type = \"line\" ) %>% ax_stroke(width = 1) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[-79056000000,4.5],[-76377600000,4.7],[-73699200000,4.6],[-71107200000,4.9],[-68428800000,4.7],[-65836800000,4.8],[-63158400000,5.1],[-60480000000,4.5],[-57974400000,4.1],[-55296000000,4.6],[-52704000000,4.4],[-50025600000,4.4],[-47433600000,4.5],[-44755200000,4.2],[-42076800000,4.6],[-39484800000,4.8],[-36806400000,4.4],[-34214400000,4.4],[-31536000000,4.4],[-28857600000,4.9],[-26438400000,4],[-23760000000,4],[-21168000000,4.2],[-18489600000,4.4],[-15897600000,4.4],[-13219200000,4.4],[-10540800000,4.7],[-7948800000,4.5],[-5270400000,4.8],[-2678400000,4.6],[0,4.6],[2678400000,4.5],[5097600000,4.6],[7776000000,4.1],[10368000000,4.7],[13046400000,4.9],[15638400000,5.1],[18316800000,5.4],[20995200000,5.2],[23587200000,5.2],[26265600000,5.6],[28857600000,5.9],[31536000000,6.2],[34214400000,6.3],[36633600000,6.4],[39312000000,6.5],[41904000000,6.7],[44582400000,5.7],[47174400000,6.2],[49852800000,6.4],[52531200000,5.8],[55123200000,6.5],[57801600000,6.4],[60393600000,6.2],[63072000000,6.2],[65750400000,6.6],[68256000000,6.6],[70934400000,6.7],[73526400000,6.6],[76204800000,5.4],[78796800000,6.1],[81475200000,6],[84153600000,5.6],[86745600000,5.7],[89424000000,5.7],[92016000000,6.1],[94694400000,5.7],[97372800000,5.2],[99792000000,5.5],[102470400000,5],[105062400000,4.9],[107740800000,5],[110332800000,5.2],[113011200000,4.9],[115689600000,5.4],[118281600000,5.5],[120960000000,5.1],[123552000000,4.7],[126230400000,5],[128908800000,5.1],[131328000000,4.8],[134006400000,5],[136598400000,4.6],[139276800000,5.3],[141868800000,5.7],[144547200000,5],[147225600000,5.3],[149817600000,5.5],[152496000000,5.2],[155088000000,5.7],[157766400000,6.3],[160444800000,7.1],[162864000000,7.2],[165542400000,8.7],[168134400000,9.4],[170812800000,8.8],[173404800000,8.6],[176083200000,9.2],[178761600000,9.2],[181353600000,8.6],[184032000000,9.5],[186624000000,9],[189302400000,9],[191980800000,8.2],[194486400000,8.7],[197164800000,8.2],[199756800000,8.3],[202435200000,7.8],[205027200000,7.7],[207705600000,7.9],[210384000000,7.8],[212976000000,7.7],[215654400000,8.4],[218246400000,8],[220924800000,7.5],[223603200000,7.2],[226022400000,7.2],[228700800000,7.3],[231292800000,7.9],[233971200000,6.2],[236563200000,7.1],[239241600000,7],[241920000000,6.7],[244512000000,6.9],[247190400000,7],[249782400000,6.8],[252460800000,6.5],[255139200000,6.7],[257558400000,6.2],[260236800000,6.1],[262828800000,5.7],[265507200000,6],[268099200000,5.8],[270777600000,5.8],[273456000000,5.6],[276048000000,5.9],[278726400000,5.5],[281318400000,5.6],[283996800000,5.9],[286675200000,5.9],[289094400000,5.9],[291772800000,5.4],[294364800000,5.6],[297043200000,5.6],[299635200000,5.9],[302313600000,4.8],[304992000000,5.5],[307584000000,5.5],[310262400000,5.3],[312854400000,5.7],[315532800000,5.3],[318211200000,5.8],[320716800000,6],[323395200000,5.8],[325987200000,5.7],[328665600000,6.4],[331257600000,7],[333936000000,7.5],[336614400000,7.7],[339206400000,7.5],[341884800000,7.7],[344476800000,7.5],[347155200000,7.4],[349833600000,7.1],[352252800000,7.1],[354931200000,7.4],[357523200000,6.9],[360201600000,6.6],[362793600000,7.1],[365472000000,7.2],[368150400000,6.8],[370742400000,6.8],[373420800000,6.9],[376012800000,6.9],[378691200000,7.1],[381369600000,7.5],[383788800000,7.7],[386467200000,8.1],[389059200000,8.5],[391737600000,9.5],[394329600000,8.5],[397008000000,8.7],[399686400000,9.5],[402278400000,9.7],[404956800000,10],[407548800000,10.2],[410227200000,11.1],[412905600000,9.8],[415324800000,10.4],[418003200000,10.9],[420595200000,12.3],[423273600000,11.3],[425865600000,10.1],[428544000000,9.3],[431222400000,9.3],[433814400000,9.4],[436492800000,9.3],[439084800000,8.7],[441763200000,9.1],[444441600000,8.3],[446947200000,8.3],[449625600000,8.2],[452217600000,9.1],[454896000000,7.5],[457488000000,7.5],[460166400000,7.3],[462844800000,7.6],[465436800000,7.2],[468115200000,7.2],[470707200000,7.3],[473385600000,6.8],[476064000000,7.1],[478483200000,7.1],[481161600000,6.9],[483753600000,6.9],[486432000000,6.6],[489024000000,6.9],[491702400000,7.1],[494380800000,6.9],[496972800000,7.1],[499651200000,7],[502243200000,6.8],[504921600000,6.7],[507600000000,6.9],[510019200000,6.8],[512697600000,6.7],[515289600000,6.8],[517968000000,7],[520560000000,6.9],[523238400000,7.1],[525916800000,7.4],[528508800000,7],[531187200000,7.1],[533779200000,7.1],[536457600000,6.9],[539136000000,6.6],[541555200000,6.6],[544233600000,7.1],[546825600000,6.6],[549504000000,6.5],[552096000000,6.5],[554774400000,6.4],[557452800000,6],[560044800000,6.3],[562723200000,6.2],[565315200000,6],[567993600000,6.2],[570672000000,6.3],[573177600000,6.4],[575856000000,5.9],[578448000000,5.9],[581126400000,5.8],[583718400000,6.1],[586396800000,5.9],[589075200000,5.7],[591667200000,5.6],[594345600000,5.7],[596937600000,5.9],[599616000000,5.6],[602294400000,5.4],[604713600000,5.4],[607392000000,5.4],[609984000000,5.3],[612662400000,5.4],[615254400000,5.6],[617932800000,5],[620611200000,4.9],[623203200000,4.9],[625881600000,4.8],[628473600000,4.9],[631152000000,5.1],[633830400000,5.3],[636249600000,5.1],[638928000000,4.8],[641520000000,5.2],[644198400000,5.2],[646790400000,5.4],[649468800000,5.4],[652147200000,5.6],[654739200000,5.8],[657417600000,5.7],[660009600000,5.9],[662688000000,6],[665366400000,6.2],[667785600000,6.7],[670464000000,6.6],[673056000000,6.4],[675734400000,6.9],[678326400000,7],[681004800000,7.3],[683683200000,6.8],[686275200000,7.2],[688953600000,7.5],[691545600000,7.8],[694224000000,8.1],[696902400000,8.2],[699408000000,8.3],[702086400000,8.5],[704678400000,8.8],[707356800000,8.7],[709948800000,8.6],[712627200000,8.8],[715305600000,8.6],[717897600000,9],[720576000000,9],[723168000000,9.3],[725846400000,8.6],[728524800000,8.5],[730944000000,8.5],[733622400000,8.4],[736214400000,8.1],[738892800000,8.3],[741484800000,8.2],[744163200000,8.2],[746841600000,8.3],[749433600000,8],[752112000000,8.3],[754704000000,8.3],[757382400000,8.6],[760060800000,9.2],[762480000000,9.3],[765158400000,9.1],[767750400000,9.2],[770428800000,9.3],[773020800000,9],[775699200000,8.9],[778377600000,9.2],[780969600000,10],[783648000000,9],[786240000000,8.7],[788918400000,8],[791596800000,8.1],[794016000000,8.3],[796694400000,8.3],[799286400000,9.1],[801964800000,7.9],[804556800000,8.5],[807235200000,8.3],[809913600000,7.9],[812505600000,8.2],[815184000000,8],[817776000000,8.3],[820454400000,8.3],[823132800000,7.8],[825638400000,8.3],[828316800000,8.6],[830908800000,8.6],[833587200000,8.3],[836179200000,8.3],[838857600000,8.4],[841536000000,8.5],[844128000000,8.3],[846806400000,7.7],[849398400000,7.8],[852076800000,7.8],[854755200000,8.1],[857174400000,7.9],[859852800000,8.3],[862444800000,8],[865123200000,8],[867715200000,8.3],[870393600000,7.8],[873072000000,8.2],[875664000000,7.7],[878342400000,7.6],[880934400000,7.5],[883612800000,7.4],[886291200000,7],[888710400000,6.8],[891388800000,6.7],[893980800000,6],[896659200000,6.9],[899251200000,6.7],[901929600000,6.8],[904608000000,6.7],[907200000000,5.8],[909878400000,6.6],[912470400000,6.8],[915148800000,6.9],[917827200000,6.8],[920246400000,6.8],[922924800000,6.2],[925516800000,6.5],[928195200000,6.3],[930787200000,5.8],[933465600000,6.5],[936144000000,6],[938736000000,6.1],[941414400000,6.2],[944006400000,5.8],[946684800000,5.8],[949363200000,6.1],[951868800000,6],[954547200000,6.1],[957139200000,5.8],[959817600000,5.7],[962409600000,6],[965088000000,6.3],[967766400000,5.2],[970358400000,6.1],[973036800000,6.1],[975628800000,6],[978307200000,5.8],[980985600000,6.1],[983404800000,6.6],[986083200000,5.9],[988675200000,6.3],[991353600000,6],[993945600000,6.8],[996624000000,6.9],[999302400000,7.2],[1001894400000,7.3],[1004572800000,7.7],[1007164800000,8.2],[1009843200000,8.4],[1012521600000,8.3],[1014940800000,8.4],[1017619200000,8.9],[1020211200000,9.5],[1022889600000,11],[1025481600000,8.9],[1028160000000,9],[1030838400000,9.5],[1033430400000,9.6],[1036108800000,9.3],[1038700800000,9.6],[1041379200000,9.6],[1044057600000,9.5],[1046476800000,9.7],[1049155200000,10.2],[1051747200000,9.9],[1054425600000,11.5],[1057017600000,10.3],[1059696000000,10.1],[1062374400000,10.2],[1064966400000,10.4],[1067644800000,10.3],[1070236800000,10.4],[1072915200000,10.6],[1075593600000,10.2],[1078099200000,10.2],[1080777600000,9.5],[1083369600000,9.9],[1086048000000,11],[1088640000000,8.9],[1091318400000,9.2],[1093996800000,9.6],[1096588800000,9.5],[1099267200000,9.7],[1101859200000,9.5],[1104537600000,9.4],[1107216000000,9.2],[1109635200000,9.3],[1112313600000,9],[1114905600000,9.1],[1117584000000,9],[1120176000000,8.8],[1122854400000,9.2],[1125532800000,8.4],[1128124800000,8.6],[1130803200000,8.5],[1133395200000,8.7],[1136073600000,8.6],[1138752000000,9.1],[1141171200000,8.7],[1143849600000,8.4],[1146441600000,8.5],[1149120000000,7.3],[1151712000000,8],[1154390400000,8.4],[1157068800000,8],[1159660800000,7.9],[1162339200000,8.3],[1164931200000,7.5],[1167609600000,8.3],[1170288000000,8.5],[1172707200000,9.1],[1175385600000,8.6],[1177977600000,8.2],[1180656000000,7.7],[1183248000000,8.7],[1185926400000,8.8],[1188604800000,8.7],[1191196800000,8.4],[1193875200000,8.6],[1196467200000,8.4],[1199145600000,9],[1201824000000,8.7],[1204329600000,8.7],[1207008000000,9.4],[1209600000000,7.9],[1212278400000,9],[1214870400000,9.7],[1217548800000,9.7],[1220227200000,10.2],[1222819200000,10.4],[1225497600000,9.8],[1228089600000,10.5],[1230768000000,10.7],[1233446400000,11.7],[1235865600000,12.3],[1238544000000,13.1],[1241136000000,14.2],[1243814400000,17.2],[1246406400000,16],[1249084800000,16.3],[1251763200000,17.8],[1254355200000,18.9],[1257033600000,19.8],[1259625600000,20.1],[1262304000000,20],[1264982400000,19.9],[1267401600000,20.4],[1270080000000,22.1],[1272672000000,22.3],[1275350400000,25.2],[1277942400000,22.3],[1280620800000,21],[1283299200000,20.3],[1285891200000,21.2],[1288569600000,21],[1291161600000,21.9],[1293840000000,21.5],[1296518400000,21.1],[1298937600000,21.5],[1301616000000,20.9],[1304208000000,21.6],[1306886400000,22.4],[1309478400000,22],[1312156800000,22.4],[1314835200000,22],[1317427200000,20.6],[1320105600000,20.8],[1322697600000,20.5],[1325376000000,20.8],[1328054400000,19.7],[1330560000000,19.2],[1333238400000,19.1],[1335830400000,19.9],[1338508800000,20.4],[1341100800000,17.5],[1343779200000,18.4],[1346457600000,18.8],[1349049600000,19.9],[1351728000000,18.6],[1354320000000,17.7],[1356998400000,15.8],[1359676800000,17.2],[1362096000000,17.6],[1364774400000,17.1],[1367366400000,17.1],[1370044800000,17],[1372636800000,16.2],[1375315200000,16.5],[1377993600000,16.5],[1380585600000,16.3],[1383264000000,17.1],[1385856000000,17.3],[1388534400000,15.4],[1391212800000,15.9],[1393632000000,15.8],[1396310400000,15.7],[1398902400000,14.6],[1401580800000,13.8],[1404172800000,13.1],[1406851200000,12.9],[1409529600000,13.4],[1412121600000,13.6],[1414800000000,13],[1417392000000,12.9],[1420070400000,13.2],[1422748800000,12.9],[1425168000000,12],[1427846400000,11.5]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":1},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]} # with group variable data(\"economics_long\", package = \"ggplot2\") apex( data = economics_long, mapping = aes(x = date, y = value01, group = variable), type = \"line\" ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"pce\",\"type\":\"line\",\"data\":[[-79056000000,0],[-76377600000,0.000265249719776508],[-73699200000,0.000761523389035778],[-71107200000,0.000470604341538967],[-68428800000,0.000915539355357616],[-65836800000,0.00157438543351217],[-63158400000,0.00207065910277143],[-60480000000,0.0023016830522542],[-57974400000,0.00321722240761181],[-55296000000,0.00319155307989151],[-52704000000,0.00368782674915077],[-50025600000,0.00424399551642409],[-47433600000,0.00483439005399116],[-44755200000,0.00515953487178171],[-42076800000,0.00526221218266294],[-39484800000,0.00555313123015975],[-36806400000,0.00598950980140497],[-34214400000,0.0059723969162581],[-31536000000,0.0065713478963986],[-28857600000,0.00701628291021725],[-26438400000,0.00703339579536412],[-23760000000,0.0074612179240359],[-21168000000,0.00800883024873578],[-18489600000,0.0080601689041764],[-15897600000,0.00821418487049825],[-13219200000,0.00883024873578561],[-10540800000,0.00911261134070899],[-7948800000,0.00956610279710108],[-5270400000,0.00973723164856979],[-2678400000,0.00993402982775881],[0,0.0104388599395915],[2678400000,0.0108923513959836],[5097600000,0.0107468918722352],[7776000000,0.0110634802474523],[10368000000,0.0116110925721522],[13046400000,0.0119447938325162],[15638400000,0.0121330355691318],[18316800000,0.0125095190423629],[20995200000,0.013040018481916],[23587200000,0.0129715669413285],[26265600000,0.0128261074175801],[28857600000,0.0135961872491893],[31536000000,0.0144946137194],[34214400000,0.0147769763243234],[36633600000,0.0149994438312327],[39312000000,0.0155812819262264],[41904000000,0.0157780801054154],[44582400000,0.0165224906093043],[47174400000,0.0164454826261434],[49852800000,0.0169588691805495],[52531200000,0.0176519410289978],[55123200000,0.017891521421054],[57801600000,0.0183278999922992],[60393600000,0.0189696331853069],[63072000000,0.0192348829050834],[65750400000,0.0196370357060349],[68256000000,0.0207493732405815],[70934400000,0.0210317358455049],[73526400000,0.0215023401870438],[76204800000,0.0218103721196875],[78796800000,0.0225205568532827],[81475200000,0.0230681691779826],[84153600000,0.0234788784215075],[86745600000,0.0246596674966416],[89424000000,0.025138828280754],[92016000000,0.0256179890648664],[94694400000,0.0265078590925037],[97372800000,0.0273036082518332],[99792000000,0.0279025592319737],[102470400000,0.0281506960666034],[105062400000,0.0286555261784361],[107740800000,0.0288865501279188],[110332800000,0.0297250815001155],[113011200000,0.029656629959528],[115689600000,0.0310171043287043],[118281600000,0.0309315399029699],[120960000000,0.0316759504068588],[123552000000,0.0316502810791385],[126230400000,0.03232624004244],[128908800000,0.0327711750562586],[131328000000,0.0337722788373506],[134006400000,0.0345765844392535],[136598400000,0.0355691317777721],[139276800000,0.0360482925618845],[141868800000,0.0368953803766546],[144547200000,0.0383414191715652],[147225600000,0.0383670884992855],[149817600000,0.0387179026447964],[152496000000,0.0384612093675933],[155088000000,0.0389403701517057],[157766400000,0.0401211592268399],[160444800000,0.041301948301974],[162864000000,0.0414046256128552],[165542400000,0.0417811090860864],[168134400000,0.0438260988611375],[170812800000,0.0445020578244389],[173404800000,0.0456143953589855],[176083200000,0.0462304592242729],[178761600000,0.0468978617450009],[181353600000,0.0474198047419805],[184032000000,0.0486947146854224],[186624000000,0.0500894148248924],[189302400000,0.0513728812109077],[191980800000,0.0514242198663484],[194486400000,0.0520402837316357],[197164800000,0.0529387102018465],[199756800000,0.0527076862523637],[202435200000,0.0542307330304353],[205027200000,0.0550093693046179],[207705600000,0.0557281104807865],[210384000000,0.0566522062787176],[212976000000,0.0573367216845924],[215654400000,0.0583806076785516],[218246400000,0.0603058072575746],[220924800000,0.0606052827476448],[223603200000,0.0619999828871149],[226022400000,0.0625989338672553],[228700800000,0.0633690136988646],[231292800000,0.0642075450710612],[233971200000,0.0647637138383346],[236563200000,0.0662097526332452],[239241600000,0.0666546876470639],[241920000000,0.0674076545935262],[244512000000,0.0688536933884368],[247190400000,0.0701884984298928],[249782400000,0.070958578261502],[252460800000,0.0704024094942287],[255139200000,0.0725928587930282],[257558400000,0.0745095019294778],[260236800000,0.0761266695758572],[262828800000,0.0774614746173131],[265507200000,0.0786422636924472],[268099200000,0.0787278281181816],[270777600000,0.0804562295180156],[273456000000,0.0809610596298483],[276048000000,0.0821589615901293],[278726400000,0.08333119422269],[281318400000,0.0846916685918662],[283996800000,0.085196498703699],[286675200000,0.086514190860008],[289094400000,0.0876607541648484],[291772800000,0.0882768180301358],[294364800000,0.0900223323151167],[297043200000,0.0914683711100273],[299635200000,0.0923582411376646],[302313600000,0.0948823916968281],[304992000000,0.0964482206877669],[307584000000,0.0971070667659214],[310262400000,0.0984504282499508],[312854400000,0.09922050808156],[315532800000,0.101873005279325],[318211200000,0.102223819424836],[320716800000,0.10280565751983],[323395200000,0.101693319985283],[325987200000,0.102112585671381],[328665600000,0.103712640432614],[331257600000,0.106134113680896],[333936000000,0.10756303959066],[336614400000,0.108991965500424],[339206400000,0.112123623482301],[341884800000,0.112953598411924],[344476800000,0.11508415261271],[347155200000,0.116649981603648],[349833600000,0.117864996449076],[352252800000,0.119465051210309],[354931200000,0.11959339784891],[357523200000,0.120397703450813],[360201600000,0.122168887063514],[362793600000,0.122819176699096],[365472000000,0.124915505129587],[368150400000,0.12482138426128],[370742400000,0.124684481180105],[373420800000,0.125257762832525],[376012800000,0.12681503538089],[378691200000,0.127525220114485],[381369600000,0.129587322774683],[383788800000,0.129835459609313],[386467200000,0.130023701345928],[389059200000,0.131580973894294],[391737600000,0.131889005826937],[394329600000,0.133951108487135],[397008000000,0.134627067450437],[399686400000,0.136723395880929],[402278400000,0.138537361706497],[404956800000,0.140548125711254],[407548800000,0.141600568147787],[410227200000,0.142661567026893],[412905600000,0.142918260304096],[415324800000,0.145125822488042],[418003200000,0.147145142935373],[420595200000,0.148813649237193],[423273600000,0.151389138451797],[425865600000,0.153819168142653],[428544000000,0.155188198954403],[431222400000,0.156428883127551],[433814400000,0.158371195591721],[436492800000,0.15911560609561],[439084800000,0.161451514918158],[441763200000,0.163659077102104],[444441600000,0.162298602732928],[446947200000,0.164702963096063],[449625600000,0.166919081722583],[452217600000,0.168373676960067],[454896000000,0.170179086343062],[457488000000,0.170093521917328],[460166400000,0.171599455810252],[462844800000,0.173447647406114],[465436800000,0.173233736341779],[468115200000,0.176664869813726],[470707200000,0.177623191381951],[473385600000,0.180720623593535],[476064000000,0.182603040959691],[478483200000,0.183261887037845],[481161600000,0.184203095720923],[483753600000,0.187360423030521],[486432000000,0.18676147205038],[489024000000,0.189011816447194],[491702400000,0.192126361543925],[494380800000,0.195771406080208],[496972800000,0.192442949919142],[499651200000,0.193752085632877],[502243200000,0.197191775547398],[504921600000,0.198543693474001],[507600000000,0.197953298936434],[510019200000,0.198244217983931],[512697600000,0.19923676532245],[515289600000,0.201144852016326],[517968000000,0.20150422260441],[520560000000,0.20317272890623],[523238400000,0.204661549914008],[525916800000,0.210924865877763],[528508800000,0.207596409716696],[531187200000,0.207211369800892],[533779200000,0.213089645848842],[536457600000,0.207818877223606],[539136000000,0.21348324220722],[541555200000,0.214475789545739],[544233600000,0.216657682401965],[546825600000,0.217479100889014],[549504000000,0.219566872876933],[552096000000,0.221440733800515],[554774400000,0.224529609569525],[557452800000,0.224161682538868],[560044800000,0.224846197944743],[562723200000,0.225676172874366],[565315200000,0.228234549203823],[567993600000,0.231622900462904],[570672000000,0.232281746541058],[573177600000,0.235627315587271],[575856000000,0.235841226651607],[578448000000,0.238459498079079],[581126400000,0.240590052279864],[583718400000,0.242660711382636],[586396800000,0.244825491353715],[589075200000,0.245424442333855],[591667200000,0.248735785609775],[594345600000,0.250147598634392],[596937600000,0.252671749193555],[599616000000,0.25472529541118],[602294400000,0.255093222441838],[604713600000,0.256017318239769],[607392000000,0.259799265857227],[609984000000,0.26055223280369],[612662400000,0.261818586304558],[615254400000,0.263452866836084],[617932800000,0.266439065294213],[620611200000,0.266550299047668],[623203200000,0.26755140282876],[625881600000,0.268381377758383],[628473600000,0.271880962770918],[631152000000,0.275859708567566],[633830400000,0.27564579750323],[636249600000,0.277930367670337],[638928000000,0.279222390498926],[641520000000,0.279718664168186],[644198400000,0.282174363186762],[646790400000,0.283646071309392],[649468800000,0.285922085033926],[652147200000,0.287787389514935],[654739200000,0.287830171727803],[657417600000,0.287941405481257],[660009600000,0.287034422568473],[662688000000,0.285297464726066],[665366400000,0.287496470467438],[667785600000,0.291458103378939],[670464000000,0.290953273267107],[673056000000,0.293186504778773],[675734400000,0.293811125086634],[678326400000,0.29599301794286],[681004800000,0.296258267662637],[683683200000,0.297593072704093],[686275200000,0.296848662200204],[688953600000,0.299210240350472],[691545600000,0.300656279145383],[694224000000,0.306149515277528],[696902400000,0.307415868778397],[699408000000,0.308913246228748],[702086400000,0.310153930401896],[704678400000,0.31245561345415],[707356800000,0.314055668215383],[709948800000,0.316425802808225],[712627200000,0.317803390062548],[715305600000,0.32074680630781],[717897600000,0.3232624004244],[720576000000,0.324614318351002],[723168000000,0.327686081234866],[725846400000,0.328054008265524],[728524800000,0.329303248881245],[730944000000,0.329063668489189],[733622400000,0.332563253501724],[736214400000,0.33504462184802],[738892800000,0.336550555740945],[741484800000,0.339023367644668],[744163200000,0.340067253638627],[746841600000,0.342668412180952],[749433600000,0.344490934449094],[752112000000,0.346313456717235],[754704000000,0.347768051954719],[757382400000,0.348965953915],[760060800000,0.353030264137382],[762480000000,0.354176827442223],[765158400000,0.356324494528155],[767750400000,0.35618759144698],[770428800000,0.359558829820914],[773020800000,0.360559933602006],[775699200000,0.364153639482849],[778377600000,0.365214638361955],[780969600000,0.368457530097287],[783648000000,0.369544198304113],[786240000000,0.370913229115863],[788918400000,0.371734647602913],[791596800000,0.371700421832619],[794016000000,0.374660950963028],[796694400000,0.375071660206553],[799286400000,0.378742374070556],[801964800000,0.382541434573162],[804556800000,0.381916814265301],[807235200000,0.384920125608577],[809913600000,0.386220704879739],[812505600000,0.385655979669892],[815184000000,0.389224016223015],[817776000000,0.392809165661285],[820454400000,0.391799505437619],[823132800000,0.395829589889708],[825638400000,0.399294949131949],[828316800000,0.402264034704931],[830908800000,0.403615952631534],[833587200000,0.40412933918594],[836179200000,0.406020312994669],[838857600000,0.407996851229133],[841536000000,0.409845042824995],[844128000000,0.412574548005921],[846806400000,0.414516860470091],[849398400000,0.416861325735212],[852076800000,0.419642169571579],[854755200000,0.421601594920896],[857174400000,0.42332999632073],[859852800000,0.423766374891975],[862444800000,0.423843382875136],[865123200000,0.426752573350104],[867715200000,0.4314243909952],[870393600000,0.434692952058252],[873072000000,0.435950749116547],[875664000000,0.439031068442984],[878342400000,0.441033276005168],[880934400000,0.443685773202933],[883612800000,0.443497531466318],[886291200000,0.446398165498712],[888710400000,0.448665622780673],[891388800000,0.451899958073431],[893980800000,0.456161066475002],[896659200000,0.459053144064824],[899251200000,0.460618973055762],[901929600000,0.463613727956465],[904608000000,0.46708764364128],[907200000000,0.46992838257566],[909878400000,0.471348752042851],[912470400000,0.476063351900814],[915148800000,0.476268706522576],[917827200000,0.478741518426299],[920246400000,0.481402572066638],[922924800000,0.486818800215622],[925516800000,0.489342950774786],[928195200000,0.491764424023068],[930787200000,0.494117445730763],[933465600000,0.497967844888809],[936144000000,0.502442864354716],[938736000000,0.504436515474327],[941414400000,0.507499721915616],[944006400000,0.51612461602964],[946684800000,0.515833696982143],[949363200000,0.523055334514122],[951868800000,0.528711143055164],[954547200000,0.527453345996868],[957139200000,0.530576447536173],[959817600000,0.53368243619033],[962409600000,0.535410837590164],[965088000000,0.538405592490866],[967766400000,0.545575891367405],[970358400000,0.546029382823797],[973036800000,0.547244397669225],[975628800000,0.550949337303523],[978307200000,0.553627503829008],[980985600000,0.555236115032814],[983404800000,0.554560156069513],[986083200000,0.55569816293178],[988675200000,0.559625570072987],[991353600000,0.560789246262974],[993945600000,0.561773237158919],[996624000000,0.56491345158337],[999302400000,0.556690710270298],[1001894400000,0.573427111943938],[1004572800000,0.569961752701697],[1007164800000,0.568233351301863],[1009843200000,0.570509365026397],[1012521600000,0.574274199758708],[1014940800000,0.575891367405088],[1017619200000,0.581726861240171],[1020211200000,0.579784548776001],[1022889600000,0.582822085889571],[1025481600000,0.588144193170248],[1028160000000,0.589949602553243],[1030838400000,0.589051176083032],[1033430400000,0.592448083784686],[1036108800000,0.594929452130982],[1038700800000,0.599472923137476],[1041379200000,0.601209880979884],[1044057600000,0.60144946137194],[1046476800000,0.606797237980337],[1049155200000,0.608730994001934],[1051747200000,0.609338501424648],[1054425600000,0.613659504924233],[1057017600000,0.618759144698],[1059696000000,0.626998998896219],[1062374400000,0.627041781109086],[1064966400000,0.627957320464444],[1067644800000,0.632569243011526],[1070236800000,0.635101950013263],[1072915200000,0.640081799591002],[1075593600000,0.642854086984795],[1078099200000,0.647662807711066],[1080777600000,0.648740919475319],[1083369600000,0.655124025635102],[1086048000000,0.653754994823352],[1088640000000,0.659889964148506],[1091318400000,0.662816267508621],[1093996800000,0.668634648458557],[1096588800000,0.673212345235345],[1099267200000,0.677148308819125],[1101859200000,0.682359182346348],[1104537600000,0.68139230433555],[1107216000000,0.686440605453877],[1109635200000,0.689888851810971],[1112313600000,0.696400304609356],[1114905600000,0.696254845085607],[1117584000000,0.703177007127517],[1120176000000,0.712135602501904],[1122854400000,0.712383739336533],[1125532800000,0.716952879670748],[1128124800000,0.72044390824071],[1130803200000,0.721462124906949],[1133395200000,0.724123178547287],[1136073600000,0.731841089748526],[1138752000000,0.734433691848277],[1141171200000,0.737171753471777],[1143849600000,0.741680998707977],[1146441600000,0.745129245065072],[1149120000000,0.747328250806445],[1151712000000,0.754327420831515],[1154390400000,0.754258969290928],[1157068800000,0.757074038897588],[1159660800000,0.758656980773674],[1162339200000,0.759255931753814],[1164931200000,0.766854052759025],[1167609600000,0.77090125009626],[1170288000000,0.773510965081158],[1172707200000,0.776788082586784],[1175385600000,0.779406354014255],[1177977600000,0.782452447570398],[1180656000000,0.783821478382148],[1183248000000,0.787440853590711],[1185926400000,0.791231357650743],[1188604800000,0.794996192383055],[1191196800000,0.797486117171925],[1193875200000,0.803544078513917],[1196467200000,0.804451061426701],[1199145600000,0.806299253022563],[1201824000000,0.804878883555373],[1204329600000,0.808814847139153],[1207008000000,0.812014956661618],[1209600000000,0.816892128928477],[1212278400000,0.821521164360705],[1214870400000,0.821247358198356],[1217548800000,0.820391713941012],[1220227200000,0.816010815343413],[1222819200000,0.808891855122314],[1225497600000,0.796955617732372],[1228089600000,0.789246262973706],[1230768000000,0.7937897339802],[1233446400000,0.792266687202129],[1235865600000,0.788202376979747],[1238544000000,0.788741432861873],[1241136000000,0.790803535522071],[1243814400000,0.795766272214664],[1246406400000,0.79874391423022],[1249084800000,0.808951750220328],[1251763200000,0.802311950783342],[1254355200000,0.806461825431459],[1257033600000,0.807197679492774],[1259625600000,0.81219464195566],[1262304000000,0.81244277879029],[1264982400000,0.81490703425144],[1267401600000,0.8199125531569],[1270080000000,0.821948986489377],[1272672000000,0.823497702595169],[1275350400000,0.82524321688015],[1277942400000,0.828092512257104],[1280620800000,0.831814564776549],[1283299200000,0.833594304831823],[1285891200000,0.838360243345227],[1288569600000,0.842638464631945],[1291161600000,0.84583857415441],[1293840000000,0.849552070231281],[1296518400000,0.852512599361689],[1298937600000,0.859391979190732],[1301616000000,0.862566419385476],[1304208000000,0.864654191373395],[1306886400000,0.866776189131607],[1309478400000,0.870258661258995],[1312156800000,0.872235199493459],[1314835200000,0.875443865458497],[1317427200000,0.876727331844512],[1320105600000,0.877274944169212],[1322697600000,0.878361612376039],[1325376000000,0.886053854249557],[1328054400000,0.893874442761677],[1330560000000,0.893728983237929],[1333238400000,0.896116230715918],[1335830400000,0.895166465590266],[1338508800000,0.89325837889639],[1341100800000,0.895902319651582],[1343779200000,0.898204002703836],[1346457600000,0.903115400740988],[1349049600000,0.906392518246614],[1351728000000,0.909558401998785],[1354320000000,0.909874990374002],[1356998400000,0.915205654097253],[1359676800000,0.918354424964277],[1362096000000,0.917284869642597],[1364774400000,0.915428121604162],[1367366400000,0.918782247092949],[1370044800000,0.92085290619572],[1372636800000,0.923240153673709],[1375315200000,0.926020997510075],[1377993600000,0.92924677636026],[1380585600000,0.933773134481608],[1383264000000,0.939574402546397],[1385856000000,0.942167004646148],[1388534400000,0.941704956747183],[1391212800000,0.946299766409118],[1393632000000,0.952871114305516],[1396310400000,0.957970754079284],[1398902400000,0.961889604777918],[1401580800000,0.967759324383294],[1404172800000,0.971481376902739],[1406851200000,0.978651675779278],[1409529600000,0.979772569756398],[1412121600000,0.985385596084572],[1414800000000,0.987815625775428],[1417392000000,0.988722608688212],[1420070400000,0.987353577876462],[1422748800000,0.990468122973193],[1425168000000,0.99696246288643],[1427846400000,1]]},{\"name\":\"pop\",\"type\":\"line\",\"data\":[[-79056000000,0],[-76377600000,0.00163529885435811],[-73699200000,0.00329525045526433],[-71107200000,0.00492233172743973],[-68428800000,0.00645901959560539],[-65836800000,0.00776561516265533],[-63158400000,0.00900647007224364],[-60480000000,0.0099268392767065],[-57974400000,0.0110444304535542],[-55296000000,0.0122935029453253],[-52704000000,0.013550793019279],[-50025600000,0.0149888699012522],[-47433600000,0.0163858588723119],[-44755200000,0.0179636346513911],[-42076800000,0.0195824983413838],[-39484800000,0.021184926867011],[-36806400000,0.022631221331167],[-34214400000,0.0239049465694861],[-31536000000,0.025047190492882],[-28857600000,0.0260415179369891],[-26438400000,0.0272084146069331],[-23760000000,0.0283424409481463],[-21168000000,0.029739429919206],[-18489600000,0.0311857243833619],[-15897600000,0.0325827133544216],[-13219200000,0.0342262297909624],[-10540800000,0.0359765747958783],[-7948800000,0.0377187022186116],[-5270400000,0.039345783490787],[-2678400000,0.0407838603727602],[0,0.0422137196725507],[2678400000,0.0435203152396007],[5097600000,0.0447365174026409],[7776000000,0.0467498250374034],[10368000000,0.0484426469670404],[13046400000,0.0502751677937834],[15638400000,0.0520994710383437],[18316800000,0.0540963435087408],[20995200000,0.0561096511435033],[23587200000,0.0581476115248139],[26265600000,0.060086960919932],[28857600000,0.0618455235070307],[31536000000,0.0637191322446872],[34214400000,0.0653790838455934],[36633600000,0.0669157717137591],[39312000000,0.068641463972127],[41904000000,0.0702438924977542],[44582400000,0.0719038440986605],[47174400000,0.0735391429530186],[49852800000,0.0753470110332135],[52531200000,0.0772617076817835],[55123200000,0.0791599691659882],[57801600000,0.080885661424356],[60393600000,0.0824059141281562],[63072000000,0.0838604261744949],[65750400000,0.0850437580088042],[68256000000,0.0862846129183926],[70934400000,0.0877144722181831],[73526400000,0.089021067785233],[76204800000,0.0905002325781197],[78796800000,0.0919054391313621],[81475200000,0.0933763863420662],[84153600000,0.0950445555251551],[86745600000,0.0966962895438786],[89424000000,0.0981508015902172],[92016000000,0.0995067026503634],[94694400000,0.100854386128327],[97372800000,0.101963759722992],[99792000000,0.103064915735474],[102470400000,0.104429034377803],[105062400000,0.105719194780488],[107740800000,0.107107966169365],[110332800000,0.108447432065145],[113011200000,0.10995124960458],[115689600000,0.111570113294573],[118281600000,0.113098583580556],[120960000000,0.114405179147606],[123552000000,0.115646034057194],[126230400000,0.116854018638052],[128908800000,0.118020915307996],[131328000000,0.119146724067026],[134006400000,0.120379361394432],[136598400000,0.121628433886203],[139276800000,0.12305007560381],[141868800000,0.124430629410505],[144547200000,0.125975534860853],[147225600000,0.127651921626125],[149817600000,0.129336525973579],[152496000000,0.13076638527337],[155088000000,0.132056545676054],[157766400000,0.133280965421277],[160444800000,0.134382121433759],[162864000000,0.135475059864059],[165542400000,0.136748785102378],[168134400000,0.138145774073438],[170812800000,0.1401590817082],[173404800000,0.141843686055655],[176083200000,0.143667989300215],[178761600000,0.14529507057239],[181353600000,0.146889281515835],[184032000000,0.148401316637452],[186624000000,0.149716129786685],[189302400000,0.151063813264649],[191980800000,0.152329320920785],[194486400000,0.153414041768902],[197164800000,0.154622026349759],[199756800000,0.155912186752444],[202435200000,0.1573584812166],[205027200000,0.15878834051639],[207705600000,0.160415421788566],[210384000000,0.162116461300386],[212976000000,0.163792848065657],[215654400000,0.165354188680371],[218246400000,0.166767612815796],[220924800000,0.168189254533404],[223603200000,0.16954515559355],[226022400000,0.170859968742783],[228700800000,0.172339133535669],[231292800000,0.173777210417643],[233971200000,0.175313898285808],[236563200000,0.17689989164707],[239241600000,0.178699542145082],[241920000000,0.180589586047104],[244512000000,0.182364583798568],[247190400000,0.184049188146023],[249782400000,0.185643399089467],[252460800000,0.187073258389258],[255139200000,0.188322330881029],[257558400000,0.18966179677681],[260236800000,0.191297095631168],[262828800000,0.192817348334968],[265507200000,0.194485517518057],[268099200000,0.196178339447694],[270777600000,0.197986207527889],[273456000000,0.200024167909199],[276048000000,0.201815600825029],[278726400000,0.203508422754666],[281318400000,0.205094416115928],[283996800000,0.206696844641555],[286675200000,0.208241750091903],[289094400000,0.209737350049156],[291772800000,0.211405519232244],[294364800000,0.212999730175689],[297043200000,0.21473364001624],[299635200000,0.216475767438973],[302313600000,0.218447987162822],[304992000000,0.220518817872863],[307584000000,0.22260608374727],[310262400000,0.224463257320561],[312854400000,0.226238255072025],[315532800000,0.227947512166028],[318211200000,0.229632116513482],[320716800000,0.231218109874744],[323395200000,0.232960237297477],[325987200000,0.234521577912191],[328665600000,0.236748542683704],[331257600000,0.238424929448975],[333936000000,0.240290320604449],[336614400000,0.242205017253019],[339206400000,0.244103278737224],[341884800000,0.245705707262851],[344476800000,0.247078043487363],[347155200000,0.24837642147223],[349833600000,0.249477577484712],[352252800000,0.250734867558666],[354931200000,0.25220581476937],[357523200000,0.253619238904795],[360201600000,0.255147709190778],[362793600000,0.256832313538232],[365472000000,0.25864839920061],[368150400000,0.260497355191718],[370742400000,0.262379181511558],[373420800000,0.263866563886627],[376012800000,0.265238900111139],[378691200000,0.266619453917833],[381369600000,0.267901396738335],[383788800000,0.269191557141019],[386467200000,0.270629634022993],[389059200000,0.271977317500956],[391737600000,0.273481135040391],[394329600000,0.275091781148201],[397008000000,0.276768167913473],[399686400000,0.278469207425292],[402278400000,0.280252422758939],[404956800000,0.281706934805278],[407548800000,0.283079271029789],[410227200000,0.284410519343387],[412905600000,0.285651374252976],[415324800000,0.286801835758554],[418003200000,0.288182389565248],[420595200000,0.28934106865301],[423273600000,0.29095171476082],[425865600000,0.292504837793351],[428544000000,0.294099048736795],[431222400000,0.295742565173336],[433814400000,0.297435387102973],[436492800000,0.298840593656216],[439084800000,0.3001307540589],[441763200000,0.301363391386306],[444441600000,0.30253028805625],[446947200000,0.30374649021929],[449625600000,0.305094173697253],[452217600000,0.30635968135339],[454896000000,0.307732017577901],[457488000000,0.30927692302825],[460166400000,0.310928657046973],[462844800000,0.312662566887524],[465436800000,0.314437564638988],[468115200000,0.315941382178423],[470707200000,0.317231542581107],[473385600000,0.318480615072878],[476064000000,0.319581771085361],[478483200000,0.320650056769112],[481161600000,0.322030610575806],[483753600000,0.323460469875597],[486432000000,0.325071115983407],[489024000000,0.326681762091217],[491702400000,0.328432107096133],[494380800000,0.330231757594145],[496972800000,0.331998537763426],[499651200000,0.333592748706871],[502243200000,0.334989737677931],[504921600000,0.336312768409346],[507600000000,0.337545405736752],[510019200000,0.33869586724233],[512697600000,0.340059985884659],[515289600000,0.341514497930998],[517968000000,0.343059403381346],[520560000000,0.344637179160425],[523238400000,0.346305348343514],[525916800000,0.348063910930613],[528508800000,0.34975673286025],[531187200000,0.351342726221512],[533779200000,0.352600016295466],[536457600000,0.353947699773429],[539136000000,0.355147466772104],[541555200000,0.356371886517327],[544233600000,0.357793528234934],[546825600000,0.359198734788177],[549504000000,0.360718987491977],[552096000000,0.362329633599787],[554774400000,0.36403889069379],[557452800000,0.36577280053434],[560044800000,0.367605321361083],[562723200000,0.369191314722345],[565315200000,0.370588303693405],[567993600000,0.37200172782883],[570672000000,0.373234365156235],[573177600000,0.374450567319276],[575856000000,0.375814685961604],[578448000000,0.377170587021751],[581126400000,0.378781233129561],[583718400000,0.380548013298842],[586396800000,0.382347663796854],[589075200000,0.38418840220578],[591667200000,0.386070228525619],[594345600000,0.387639786722516],[596937600000,0.389053210857941],[599616000000,0.390433764664635],[602294400000,0.391699272320771],[604713600000,0.392948344812542],[607392000000,0.394517903009439],[609984000000,0.396038155713239],[612662400000,0.397747412807242],[615254400000,0.399621021544898],[617932800000,0.401519283029103],[620611200000,0.4035161554995],[623203200000,0.405578768627359],[625881600000,0.407337331214457],[628473600000,0.408964412486633],[631152000000,0.410443577279519],[633830400000,0.411824131086214],[636249600000,0.413344383790014],[638928000000,0.415760352951729],[641520000000,0.417888706737049],[644198400000,0.420222500076937],[646790400000,0.422548075834642],[649468800000,0.425070873564733],[652147200000,0.427634759205736],[654739200000,0.430149339353644],[657417600000,0.432524220604445],[660009600000,0.434825143615602],[662688000000,0.436986367729653],[665366400000,0.439007892946599],[667785600000,0.4409554599239],[670464000000,0.443182424695412],[673056000000,0.445401171884742],[675734400000,0.447817141046457],[678326400000,0.450167369550711],[681004800000,0.45274769035608],[683683200000,0.455369099072362],[686275200000,0.457908331966818],[688953600000,0.460233907724523],[691545600000,0.462255432941468],[694224000000,0.464309828487144],[696902400000,0.466232742717897],[699408000000,0.468328226174487],[702086400000,0.470703107425288],[704678400000,0.47311085900482],[707356800000,0.475609003988362],[709948800000,0.478115366554087],[712627200000,0.480892909331841],[715305600000,0.483489665301576],[717897600000,0.486061768524762],[720576000000,0.488411997029015],[723168000000,0.490597873889615],[725846400000,0.492783750750214],[728524800000,0.494755970474063],[730944000000,0.496670667122633],[733622400000,0.498823673654501],[736214400000,0.501009550515101],[738892800000,0.503335126272806],[741484800000,0.505734660270156],[744163200000,0.508290328328976],[746841600000,0.51076382056597],[749433600000,0.513196224892051],[752112000000,0.515349231423919],[754704000000,0.517395409387413],[757382400000,0.519408717022175],[760060800000,0.521085103787447],[762480000000,0.522966930107286],[765158400000,0.52525963553626],[767750400000,0.527281160753206],[770428800000,0.529540995853449],[773020800000,0.531874789193337],[775699200000,0.534241452861956],[778377600000,0.536649204441488],[780969600000,0.538982997781376],[783648000000,0.541103133984514],[786240000000,0.543116441619276],[788918400000,0.545088661343125],[791596800000,0.546945834916416],[794016000000,0.548794790907525],[796694400000,0.550931362275028],[799286400000,0.552928234745425],[801964800000,0.55516341709912],[804556800000,0.557521863185557],[807235200000,0.55987209168981],[809913600000,0.562411324584265],[812505600000,0.564909469567807],[815184000000,0.567037823353128],[817776000000,0.568911432090784],[820454400000,0.570620689184787],[823132800000,0.572371034189703],[825638400000,0.574269295673907],[828316800000,0.576389431877045],[830908800000,0.578484915333635],[833587200000,0.580769403180426],[836179200000,0.583078543773766],[838857600000,0.585617776668222],[841536000000,0.588148791980495],[844128000000,0.590589413888758],[846806400000,0.593030035797021],[849398400000,0.595059778596149],[852076800000,0.596990910409084],[854755200000,0.598839866400192],[857174400000,0.600779215795311],[859852800000,0.602932222327179],[862444800000,0.605060576112499],[865123200000,0.607361499123657],[867715200000,0.609744597956641],[870393600000,0.61241531216602],[873072000000,0.615012068135754],[875664000000,0.617469125208383],[878342400000,0.619720742726444],[880934400000,0.621742267943389],[883612800000,0.623829533817795],[886291200000,0.625571661240529],[888710400000,0.627289135916714],[891388800000,0.629401054537669],[893980800000,0.631537625905172],[896659200000,0.633772808258867],[899251200000,0.636065513687842],[901929600000,0.638555441089201],[904608000000,0.640987845415282],[907200000000,0.643362726666083],[909878400000,0.645614344184144],[912470400000,0.647660522147637],[915148800000,0.649829963843871],[917827200000,0.651489915444777],[920246400000,0.653182737374414],[922924800000,0.655261785666639],[925516800000,0.657447662527238],[928195200000,0.659781455867126],[930787200000,0.662197425028841],[933465600000,0.664720222758931],[936144000000,0.667193714995925],[938736000000,0.669658989650736],[941414400000,0.671861301675701],[944006400000,0.673874609310463],[946684800000,0.676011180677966],[949363200000,0.677769743265065],[951868800000,0.679569393763077],[954547200000,0.681574483815657],[957139200000,0.683415222224583],[959817600000,0.685461400188076],[962409600000,0.687589753973396],[965088000000,0.689792065998361],[967766400000,0.692084771427335],[970358400000,0.694295301034483],[973036800000,0.696366131744524],[975628800000,0.698363004214921],[978307200000,0.700203742623847],[980985600000,0.701986957957494],[983404800000,0.70373730296241],[986083200000,0.705635564446614],[988675200000,0.707517390766454],[991353600000,0.709588221476495],[993945600000,0.711617964275623],[996624000000,0.713762753225309],[999302400000,0.716006153161187],[1001894400000,0.718101636617776],[1004572800000,0.720098509088174],[1007164800000,0.721980335408013],[1009843200000,0.723771768323842],[1012521600000,0.725464590253479],[1014940800000,0.727075236361289],[1017619200000,0.728776275873109],[1020211200000,0.7306334494464],[1022889600000,0.732613886752432],[1025481600000,0.734594324058463],[1028160000000,0.736689807515053],[1030838400000,0.738809943718191],[1033430400000,0.740880774428232],[1036108800000,0.74282012382335],[1038700800000,0.74452116333517],[1041379200000,0.746205767682624],[1044057600000,0.747816413790434],[1046476800000,0.749435277480427],[1049155200000,0.751193840067526],[1051747200000,0.753009925729903],[1054425600000,0.754965710289387],[1057017600000,0.756905059684505],[1059696000000,0.758975890394546],[1062374400000,0.76102206835804],[1064966400000,0.763101116650264],[1067644800000,0.765015813298834],[1070236800000,0.766667547317557],[1072915200000,0.768179582439175],[1075593600000,0.769625876903331],[1078099200000,0.771211870264593],[1080777600000,0.773003303180422],[1083369600000,0.774794736096252],[1086048000000,0.776651909669543],[1088640000000,0.778624129393392],[1091318400000,0.780727830432164],[1093996800000,0.782798661142205],[1096588800000,0.784927014927526],[1099267200000,0.786866364322644],[1101859200000,0.7887399730603],[1104537600000,0.790547841140495],[1107216000000,0.792117399337392],[1109635200000,0.793612999294644],[1112313600000,0.795281168477733],[1114905600000,0.797039731064832],[1117584000000,0.798946210131219],[1120176000000,0.801000605676895],[1122854400000,0.803087871551302],[1125532800000,0.805281965994084],[1128124800000,0.8074596252725],[1130803200000,0.809390757085436],[1133395200000,0.811231495494361],[1136073600000,0.813006493245826],[1138752000000,0.814707532757645],[1141171200000,0.816400354687282],[1143849600000,0.81821644034966],[1146441600000,0.819983220518941],[1149120000000,0.821980092989338],[1151712000000,0.824092011610293],[1154390400000,0.826286106053075],[1157068800000,0.828677422468242],[1159660800000,0.830986563061582],[1162339200000,0.833114916846902],[1164931200000,0.835136442063848],[1167609600000,0.8370593562946],[1170288000000,0.838932965032257],[1172707200000,0.840732615530269],[1175385600000,0.842647312178839],[1177977600000,0.844529138498678],[1180656000000,0.84663283953745],[1183248000000,0.848810498815867],[1185926400000,0.850971722929918],[1188604800000,0.853264428358893],[1191196800000,0.855409217308578],[1193875200000,0.857438960107706],[1196467200000,0.859353656756276],[1199145600000,0.861153307254289],[1201824000000,0.862837911601743],[1204329600000,0.864448557709553],[1207008000000,0.866174249967921],[1209600000000,0.867867071897558],[1212278400000,0.869781768546128],[1214870400000,0.871770423434342],[1217548800000,0.87380016623347],[1220227200000,0.875969607929704],[1222819200000,0.877982915564467],[1225497600000,0.879889394630854],[1228089600000,0.881680827546683],[1230768000000,0.883357214311955],[1233446400000,0.884951425255399],[1235865600000,0.886479895541382],[1238544000000,0.888115194395741],[1241136000000,0.889734058085733],[1243814400000,0.891558361330294],[1246406400000,0.893473057978864],[1249084800000,0.895494583195809],[1251763200000,0.897639372145494],[1254355200000,0.899636244615892],[1257033600000,0.901518070935731],[1259625600000,0.903284851105012],[1262304000000,0.904928367541553],[1264982400000,0.906522578484998],[1267401600000,0.908042831188798],[1270080000000,0.907871995872802],[1272672000000,0.909333427123338],[1275350400000,0.910808064028442],[1277942400000,0.912428538364542],[1280620800000,0.914171298541104],[1283299200000,0.915968409806222],[1285891200000,0.917804973683399],[1288569600000,0.919414025580265],[1291161600000,0.920942011028899],[1293840000000,0.92241324585498],[1296518400000,0.923667544729019],[1298937600000,0.924916847313091],[1301616000000,0.926320689747691],[1304208000000,0.927724597922949],[1306886400000,0.929237808158818],[1309478400000,0.930929200229156],[1312156800000,0.932641070514292],[1314835200000,0.934479762745255],[1317427200000,0.936246879835405],[1320105600000,0.93777012373912],[1322697600000,0.939250841655039],[1325376000000,0.940676320983526],[1328054400000,0.941956603852427],[1330560000000,0.943274638293876],[1333238400000,0.944653203445681],[1335830400000,0.945995981027082],[1338508800000,0.947533194820507],[1341100800000,0.949120765957549],[1343779200000,0.95085923655621],[1346457600000,0.952703327738667],[1349049600000,0.954406249076806],[1351728000000,0.956048820491396],[1354320000000,0.957518855550477],[1356998400000,0.958807725792759],[1359676800000,0.959880514711547],[1362096000000,0.961048077005648],[1364774400000,0.962326987538324],[1367366400000,0.963689454446634],[1370044800000,0.965229330736687],[1372636800000,0.966772066745339],[1375315200000,0.968592663860335],[1377993600000,0.970448177482025],[1380585600000,0.972224366782906],[1383264000000,0.97391518362249],[1385856000000,0.975423315392571],[1388534400000,0.976921972290395],[1391212800000,0.97823645673634],[1393632000000,0.97957855225842],[1396310400000,0.980992099657577],[1398902400000,0.982473622896551],[1401580800000,0.984073150615668],[1404172800000,0.985702006885595],[1406851200000,0.987603703319152],[1409529600000,0.989506155770269],[1412121600000,0.991383363808922],[1414800000000,0.993112959418826],[1417392000000,0.994608132061805],[1420070400000,0.996107750416745],[1422748800000,0.997306408041825],[1425168000000,0.998590610697427],[1427846400000,1]]},{\"name\":\"psavert\",\"type\":\"line\",\"data\":[[-79056000000,0.688741721854304],[-76377600000,0.688741721854304],[-73699200000,0.642384105960265],[-71107200000,0.708609271523179],[-68428800000,0.701986754966887],[-65836800000,0.635761589403974],[-63158400000,0.629139072847682],[-60480000000,0.668874172185431],[-57974400000,0.629139072847682],[-55296000000,0.668874172185431],[-52704000000,0.649006622516556],[-50025600000,0.629139072847682],[-47433600000,0.562913907284768],[-44755200000,0.549668874172185],[-42076800000,0.556291390728477],[-39484800000,0.56953642384106],[-36806400000,0.556291390728477],[-34214400000,0.589403973509934],[-31536000000,0.536423841059603],[-28857600000,0.496688741721854],[-26438400000,0.529801324503311],[-23760000000,0.496688741721854],[-21168000000,0.52317880794702],[-18489600000,0.589403973509934],[-15897600000,0.635761589403974],[-13219200000,0.615894039735099],[-10540800000,0.622516556291391],[-7948800000,0.609271523178808],[-5270400000,0.622516556291391],[-2678400000,0.635761589403974],[0,0.635761589403974],[2678400000,0.629139072847682],[5097600000,0.675496688741722],[7776000000,0.735099337748344],[10368000000,0.675496688741722],[13046400000,0.668874172185431],[15638400000,0.748344370860927],[18316800000,0.741721854304636],[20995200000,0.708609271523179],[23587200000,0.721854304635761],[26265600000,0.754966887417218],[28857600000,0.728476821192053],[31536000000,0.735099337748344],[34214400000,0.735099337748344],[36633600000,0.748344370860927],[39312000000,0.728476821192053],[41904000000,0.754966887417218],[44582400000,0.827814569536424],[47174400000,0.768211920529801],[49852800000,0.754966887417218],[52531200000,0.735099337748344],[55123200000,0.735099337748344],[57801600000,0.721854304635761],[60393600000,0.71523178807947],[63072000000,0.682119205298013],[65750400000,0.701986754966887],[68256000000,0.635761589403974],[70934400000,0.615894039735099],[73526400000,0.629139072847682],[76204800000,0.629139072847682],[78796800000,0.629139072847682],[81475200000,0.649006622516556],[84153600000,0.662251655629139],[86745600000,0.71523178807947],[89424000000,0.754966887417218],[92016000000,0.76158940397351],[94694400000,0.675496688741722],[97372800000,0.682119205298013],[99792000000,0.695364238410596],[102470400000,0.728476821192053],[105062400000,0.728476821192053],[107740800000,0.754966887417218],[110332800000,0.728476821192053],[113011200000,0.774834437086093],[115689600000,0.721854304635761],[118281600000,0.80794701986755],[120960000000,0.80794701986755],[123552000000,0.834437086092715],[126230400000,0.801324503311258],[128908800000,0.794701986754967],[131328000000,0.741721854304636],[134006400000,0.721854304635761],[136598400000,0.701986754966887],[139276800000,0.701986754966887],[141868800000,0.701986754966887],[144547200000,0.655629139072847],[147225600000,0.708609271523179],[149817600000,0.741721854304636],[152496000000,0.768211920529801],[155088000000,0.781456953642384],[157766400000,0.728476821192053],[160444800000,0.682119205298013],[162864000000,0.695364238410596],[165542400000,0.794701986754967],[168134400000,1],[170812800000,0.801324503311258],[173404800000,0.688741721854304],[176083200000,0.71523178807947],[178761600000,0.71523178807947],[181353600000,0.741721854304636],[184032000000,0.695364238410596],[186624000000,0.649006622516556],[189302400000,0.629139072847682],[191980800000,0.668874172185431],[194486400000,0.662251655629139],[197164800000,0.629139072847682],[199756800000,0.668874172185431],[202435200000,0.609271523178808],[205027200000,0.629139072847682],[207705600000,0.629139072847682],[210384000000,0.609271523178808],[212976000000,0.589403973509934],[215654400000,0.609271523178808],[218246400000,0.556291390728477],[220924800000,0.556291390728477],[223603200000,0.470198675496689],[226022400000,0.549668874172185],[228700800000,0.549668874172185],[231292800000,0.536423841059603],[233971200000,0.556291390728477],[236563200000,0.549668874172185],[239241600000,0.576158940397351],[241920000000,0.589403973509934],[244512000000,0.582781456953642],[247190400000,0.596026490066225],[249782400000,0.609271523178808],[252460800000,0.642384105960265],[255139200000,0.589403973509934],[257558400000,0.582781456953642],[260236800000,0.56953642384106],[262828800000,0.536423841059603],[265507200000,0.516556291390728],[268099200000,0.576158940397351],[270777600000,0.549668874172185],[273456000000,0.556291390728477],[276048000000,0.562913907284768],[278726400000,0.549668874172185],[281318400000,0.543046357615894],[283996800000,0.589403973509934],[286675200000,0.589403973509934],[289094400000,0.596026490066225],[291772800000,0.582781456953642],[294364800000,0.536423841059603],[297043200000,0.509933774834437],[299635200000,0.556291390728477],[302313600000,0.496688741721854],[304992000000,0.47682119205298],[307584000000,0.496688741721854],[310262400000,0.496688741721854],[312854400000,0.52317880794702],[315532800000,0.509933774834437],[318211200000,0.52317880794702],[320716800000,0.529801324503311],[323395200000,0.602649006622517],[325987200000,0.609271523178808],[328665600000,0.596026490066225],[331257600000,0.602649006622517],[333936000000,0.602649006622517],[336614400000,0.629139072847682],[339206400000,0.602649006622517],[341884800000,0.622516556291391],[344476800000,0.609271523178808],[347155200000,0.576158940397351],[349833600000,0.56953642384106],[352252800000,0.56953642384106],[354931200000,0.576158940397351],[357523200000,0.582781456953642],[360201600000,0.56953642384106],[362793600000,0.668874172185431],[365472000000,0.649006622516556],[368150400000,0.675496688741722],[370742400000,0.71523178807947],[373420800000,0.728476821192053],[376012800000,0.682119205298013],[378691200000,0.695364238410596],[381369600000,0.655629139072847],[383788800000,0.662251655629139],[386467200000,0.708609271523179],[389059200000,0.668874172185431],[391737600000,0.668874172185431],[394329600000,0.682119205298013],[397008000000,0.688741721854304],[399686400000,0.635761589403974],[402278400000,0.602649006622517],[404956800000,0.576158940397351],[407548800000,0.576158940397351],[410227200000,0.589403973509934],[412905600000,0.589403973509934],[415324800000,0.556291390728477],[418003200000,0.536423841059603],[420595200000,0.509933774834437],[423273600000,0.456953642384106],[425865600000,0.490066225165563],[428544000000,0.463576158940397],[431222400000,0.490066225165563],[433814400000,0.496688741721854],[436492800000,0.536423841059603],[439084800000,0.52317880794702],[441763200000,0.516556291390728],[444441600000,0.629139072847682],[446947200000,0.615894039735099],[449625600000,0.615894039735099],[452217600000,0.589403973509934],[454896000000,0.589403973509934],[457488000000,0.622516556291391],[460166400000,0.635761589403974],[462844800000,0.635761589403974],[465436800000,0.629139072847682],[468115200000,0.576158940397351],[470707200000,0.596026490066225],[473385600000,0.536423841059603],[476064000000,0.456953642384106],[478483200000,0.43046357615894],[481161600000,0.509933774834437],[483753600000,0.589403973509934],[486432000000,0.490066225165563],[489024000000,0.456953642384106],[491702400000,0.397350993377483],[494380800000,0.337748344370861],[496972800000,0.456953642384106],[499651200000,0.450331125827815],[502243200000,0.423841059602649],[504921600000,0.423841059602649],[507600000000,0.470198675496689],[510019200000,0.509933774834437],[512697600000,0.496688741721854],[515289600000,0.470198675496689],[517968000000,0.47682119205298],[520560000000,0.470198675496689],[523238400000,0.450331125827815],[525916800000,0.33112582781457],[528508800000,0.410596026490066],[531187200000,0.437086092715232],[533779200000,0.317880794701987],[536457600000,0.496688741721854],[539136000000,0.417218543046358],[541555200000,0.417218543046358],[544233600000,0.152317880794702],[546825600000,0.397350993377483],[549504000000,0.364238410596026],[552096000000,0.350993377483444],[554774400000,0.33112582781457],[557452800000,0.357615894039735],[560044800000,0.403973509933775],[562723200000,0.417218543046358],[565315200000,0.43046357615894],[567993600000,0.390728476821192],[570672000000,0.423841059602649],[573177600000,0.397350993377483],[575856000000,0.437086092715232],[578448000000,0.410596026490066],[581126400000,0.410596026490066],[583718400000,0.423841059602649],[586396800000,0.410596026490066],[589075200000,0.443708609271523],[591667200000,0.423841059602649],[594345600000,0.410596026490066],[596937600000,0.403973509933775],[599616000000,0.417218543046358],[602294400000,0.450331125827815],[604713600000,0.483443708609271],[607392000000,0.410596026490066],[609984000000,0.390728476821192],[612662400000,0.397350993377483],[615254400000,0.397350993377483],[617932800000,0.357615894039735],[620611200000,0.390728476821192],[623203200000,0.417218543046358],[625881600000,0.423841059602649],[628473600000,0.370860927152318],[631152000000,0.384105960264901],[633830400000,0.423841059602649],[636249600000,0.403973509933775],[638928000000,0.437086092715232],[641520000000,0.43046357615894],[644198400000,0.423841059602649],[646790400000,0.43046357615894],[649468800000,0.390728476821192],[652147200000,0.390728476821192],[654739200000,0.370860927152318],[657417600000,0.377483443708609],[660009600000,0.437086092715232],[662688000000,0.470198675496689],[665366400000,0.437086092715232],[667785600000,0.384105960264901],[670464000000,0.423841059602649],[673056000000,0.410596026490066],[675734400000,0.443708609271523],[678326400000,0.397350993377483],[681004800000,0.423841059602649],[683683200000,0.437086092715232],[686275200000,0.470198675496689],[688953600000,0.450331125827815],[691545600000,0.496688741721854],[694224000000,0.47682119205298],[696902400000,0.503311258278146],[699408000000,0.496688741721854],[702086400000,0.509933774834437],[704678400000,0.509933774834437],[707356800000,0.52317880794702],[709948800000,0.490066225165563],[712627200000,0.496688741721854],[715305600000,0.43046357615894],[717897600000,0.384105960264901],[720576000000,0.384105960264901],[723168000000,0.556291390728477],[725846400000,0.423841059602649],[728524800000,0.443708609271523],[730944000000,0.443708609271523],[733622400000,0.43046357615894],[736214400000,0.403973509933775],[738892800000,0.370860927152318],[741484800000,0.357615894039735],[744163200000,0.364238410596026],[746841600000,0.311258278145695],[749433600000,0.271523178807947],[752112000000,0.271523178807947],[754704000000,0.456953642384106],[757382400000,0.324503311258278],[760060800000,0.28476821192053],[762480000000,0.304635761589404],[765158400000,0.278145695364238],[767750400000,0.357615894039735],[770428800000,0.311258278145695],[773020800000,0.317880794701987],[775699200000,0.28476821192053],[778377600000,0.304635761589404],[780969600000,0.324503311258278],[783648000000,0.317880794701987],[786240000000,0.33112582781457],[788918400000,0.350993377483444],[791596800000,0.370860927152318],[794016000000,0.350993377483444],[796694400000,0.311258278145695],[799286400000,0.324503311258278],[801964800000,0.298013245033113],[804556800000,0.324503311258278],[807235200000,0.298013245033113],[809913600000,0.304635761589404],[812505600000,0.324503311258278],[815184000000,0.291390728476821],[817776000000,0.258278145695364],[820454400000,0.298013245033113],[823132800000,0.298013245033113],[825638400000,0.291390728476821],[828316800000,0.231788079470199],[830908800000,0.298013245033113],[833587200000,0.324503311258278],[836179200000,0.298013245033113],[838857600000,0.291390728476821],[841536000000,0.298013245033113],[844128000000,0.278145695364238],[846806400000,0.278145695364238],[849398400000,0.278145695364238],[852076800000,0.264900662251656],[854755200000,0.264900662251656],[857174400000,0.278145695364238],[859852800000,0.28476821192053],[862444800000,0.304635761589404],[865123200000,0.291390728476821],[867715200000,0.258278145695364],[870393600000,0.251655629139073],[873072000000,0.264900662251656],[875664000000,0.264900662251656],[878342400000,0.278145695364238],[880934400000,0.278145695364238],[883612800000,0.344370860927152],[886291200000,0.344370860927152],[888710400000,0.350993377483444],[891388800000,0.33112582781457],[893980800000,0.311258278145695],[896659200000,0.304635761589404],[899251200000,0.311258278145695],[901929600000,0.304635761589404],[904608000000,0.278145695364238],[907200000000,0.264900662251656],[909878400000,0.271523178807947],[912470400000,0.23841059602649],[915148800000,0.278145695364238],[917827200000,0.264900662251656],[920246400000,0.245033112582781],[922924800000,0.198675496688742],[925516800000,0.178807947019868],[928195200000,0.172185430463576],[930787200000,0.172185430463576],[933465600000,0.165562913907285],[936144000000,0.132450331125828],[938736000000,0.158940397350993],[941414400000,0.172185430463576],[944006400000,0.145695364238411],[946684800000,0.211920529801325],[949363200000,0.172185430463576],[951868800000,0.152317880794702],[954547200000,0.185430463576159],[957139200000,0.178807947019868],[959817600000,0.178807947019868],[962409600000,0.198675496688742],[965088000000,0.198675496688742],[967766400000,0.152317880794702],[970358400000,0.158940397350993],[973036800000,0.152317880794702],[975628800000,0.132450331125828],[978307200000,0.172185430463576],[980985600000,0.178807947019868],[983404800000,0.205298013245033],[986083200000,0.185430463576159],[988675200000,0.152317880794702],[991353600000,0.152317880794702],[993945600000,0.225165562913907],[996624000000,0.304635761589404],[999302400000,0.317880794701987],[1001894400000,0.0794701986754967],[1004572800000,0.125827814569536],[1007164800000,0.152317880794702],[1009843200000,0.258278145695364],[1012521600000,0.23841059602649],[1014940800000,0.245033112582781],[1017619200000,0.23841059602649],[1020211200000,0.28476821192053],[1022889600000,0.278145695364238],[1025481600000,0.218543046357616],[1028160000000,0.211920529801325],[1030838400000,0.231788079470199],[1033430400000,0.231788079470199],[1036108800000,0.231788079470199],[1038700800000,0.218543046357616],[1041379200000,0.218543046357616],[1044057600000,0.225165562913907],[1046476800000,0.205298013245033],[1049155200000,0.205298013245033],[1051747200000,0.23841059602649],[1054425600000,0.225165562913907],[1057017600000,0.271523178807947],[1059696000000,0.251655629139073],[1062374400000,0.198675496688742],[1064966400000,0.205298013245033],[1067644800000,0.211920529801325],[1070236800000,0.211920529801325],[1072915200000,0.185430463576159],[1075593600000,0.185430463576159],[1078099200000,0.178807947019868],[1080777600000,0.205298013245033],[1083369600000,0.205298013245033],[1086048000000,0.23841059602649],[1088640000000,0.205298013245033],[1091318400000,0.198675496688742],[1093996800000,0.158940397350993],[1096588800000,0.152317880794702],[1099267200000,0.125827814569536],[1101859200000,0.311258278145695],[1104537600000,0.0993377483443709],[1107216000000,0.0794701986754967],[1109635200000,0.0927152317880795],[1112313600000,0.0596026490066225],[1114905600000,0.0860927152317881],[1117584000000,0.0463576158940397],[1120176000000,0],[1122854400000,0.0331125827814569],[1125532800000,0.0331125827814569],[1128124800000,0.0596026490066225],[1130803200000,0.0860927152317881],[1133395200000,0.0993377483443709],[1136073600000,0.132450331125828],[1138752000000,0.132450331125828],[1141171200000,0.132450331125828],[1143849600000,0.119205298013245],[1146441600000,0.105960264900662],[1149120000000,0.119205298013245],[1151712000000,0.0794701986754967],[1154390400000,0.0927152317880795],[1157068800000,0.0927152317880795],[1159660800000,0.0927152317880795],[1162339200000,0.112582781456954],[1164931200000,0.0993377483443709],[1167609600000,0.0993377483443709],[1170288000000,0.125827814569536],[1172707200000,0.145695364238411],[1175385600000,0.132450331125828],[1177977600000,0.119205298013245],[1180656000000,0.105960264900662],[1183248000000,0.0993377483443709],[1185926400000,0.0794701986754967],[1188604800000,0.0860927152317881],[1191196800000,0.0794701986754967],[1193875200000,0.0596026490066225],[1196467200000,0.0927152317880795],[1199145600000,0.0993377483443709],[1201824000000,0.125827814569536],[1204329600000,0.119205298013245],[1207008000000,0.0794701986754967],[1209600000000,0.370860927152318],[1212278400000,0.218543046357616],[1214870400000,0.145695364238411],[1217548800000,0.105960264900662],[1220227200000,0.165562913907285],[1222819200000,0.218543046357616],[1225497600000,0.278145695364238],[1228089600000,0.278145695364238],[1230768000000,0.264900662251656],[1233446400000,0.218543046357616],[1235865600000,0.245033112582781],[1238544000000,0.304635761589404],[1241136000000,0.397350993377483],[1243814400000,0.298013245033113],[1246406400000,0.251655629139073],[1249084800000,0.178807947019868],[1251763200000,0.245033112582781],[1254355200000,0.211920529801325],[1257033600000,0.245033112582781],[1259625600000,0.245033112582781],[1262304000000,0.258278145695364],[1264982400000,0.23841059602649],[1267401600000,0.231788079470199],[1270080000000,0.278145695364238],[1272672000000,0.317880794701987],[1275350400000,0.311258278145695],[1277942400000,0.304635761589404],[1280620800000,0.311258278145695],[1283299200000,0.298013245033113],[1285891200000,0.291390728476821],[1288569600000,0.291390728476821],[1291161600000,0.324503311258278],[1293840000000,0.344370860927152],[1296518400000,0.357615894039735],[1298937600000,0.317880794701987],[1301616000000,0.311258278145695],[1304208000000,0.311258278145695],[1306886400000,0.33112582781457],[1309478400000,0.337748344370861],[1312156800000,0.33112582781457],[1314835200000,0.304635761589404],[1317427200000,0.304635761589404],[1320105600000,0.317880794701987],[1322697600000,0.370860927152318],[1325376000000,0.384105960264901],[1328054400000,0.384105960264901],[1330560000000,0.417218543046358],[1333238400000,0.43046357615894],[1335830400000,0.437086092715232],[1338508800000,0.456953642384106],[1341100800000,0.397350993377483],[1343779200000,0.384105960264901],[1346457600000,0.397350993377483],[1349049600000,0.437086092715232],[1351728000000,0.496688741721854],[1354320000000,0.649006622516556],[1356998400000,0.271523178807947],[1359676800000,0.23841059602649],[1362096000000,0.245033112582781],[1364774400000,0.278145695364238],[1367366400000,0.298013245033113],[1370044800000,0.304635761589404],[1372636800000,0.291390728476821],[1375315200000,0.298013245033113],[1377993600000,0.304635761589404],[1380585600000,0.271523178807947],[1383264000000,0.264900662251656],[1385856000000,0.278145695364238],[1388534400000,0.324503311258278],[1391212800000,0.337748344370861],[1393632000000,0.344370860927152],[1396310400000,0.344370860927152],[1398902400000,0.344370860927152],[1401580800000,0.344370860927152],[1404172800000,0.350993377483444],[1406851200000,0.33112582781457],[1409529600000,0.344370860927152],[1412121600000,0.33112582781457],[1414800000000,0.337748344370861],[1417392000000,0.357615894039735],[1420070400000,0.364238410596026],[1422748800000,0.377483443708609],[1425168000000,0.344370860927152],[1427846400000,0.357615894039735]]},{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[-79056000000,0.0235849056603774],[-76377600000,0.0330188679245283],[-73699200000,0.0283018867924528],[-71107200000,0.0424528301886793],[-68428800000,0.0330188679245283],[-65836800000,0.0377358490566038],[-63158400000,0.0518867924528302],[-60480000000,0.0235849056603774],[-57974400000,0.00471698113207546],[-55296000000,0.0283018867924528],[-52704000000,0.0188679245283019],[-50025600000,0.0188679245283019],[-47433600000,0.0235849056603774],[-44755200000,0.00943396226415095],[-42076800000,0.0283018867924528],[-39484800000,0.0377358490566038],[-36806400000,0.0188679245283019],[-34214400000,0.0188679245283019],[-31536000000,0.0188679245283019],[-28857600000,0.0424528301886793],[-26438400000,0],[-23760000000,0],[-21168000000,0.00943396226415095],[-18489600000,0.0188679245283019],[-15897600000,0.0188679245283019],[-13219200000,0.0188679245283019],[-10540800000,0.0330188679245283],[-7948800000,0.0235849056603774],[-5270400000,0.0377358490566038],[-2678400000,0.0283018867924528],[0,0.0283018867924528],[2678400000,0.0235849056603774],[5097600000,0.0283018867924528],[7776000000,0.00471698113207546],[10368000000,0.0330188679245283],[13046400000,0.0424528301886793],[15638400000,0.0518867924528302],[18316800000,0.0660377358490566],[20995200000,0.0566037735849057],[23587200000,0.0566037735849057],[26265600000,0.0754716981132075],[28857600000,0.089622641509434],[31536000000,0.10377358490566],[34214400000,0.108490566037736],[36633600000,0.113207547169811],[39312000000,0.117924528301887],[41904000000,0.127358490566038],[44582400000,0.080188679245283],[47174400000,0.10377358490566],[49852800000,0.113207547169811],[52531200000,0.0849056603773585],[55123200000,0.117924528301887],[57801600000,0.113207547169811],[60393600000,0.10377358490566],[63072000000,0.10377358490566],[65750400000,0.122641509433962],[68256000000,0.122641509433962],[70934400000,0.127358490566038],[73526400000,0.122641509433962],[76204800000,0.0660377358490566],[78796800000,0.0990566037735849],[81475200000,0.0943396226415094],[84153600000,0.0754716981132075],[86745600000,0.080188679245283],[89424000000,0.080188679245283],[92016000000,0.0990566037735849],[94694400000,0.080188679245283],[97372800000,0.0566037735849057],[99792000000,0.0707547169811321],[102470400000,0.0471698113207547],[105062400000,0.0424528301886793],[107740800000,0.0471698113207547],[110332800000,0.0566037735849057],[113011200000,0.0424528301886793],[115689600000,0.0660377358490566],[118281600000,0.0707547169811321],[120960000000,0.0518867924528302],[123552000000,0.0330188679245283],[126230400000,0.0471698113207547],[128908800000,0.0518867924528302],[131328000000,0.0377358490566038],[134006400000,0.0471698113207547],[136598400000,0.0283018867924528],[139276800000,0.0613207547169811],[141868800000,0.080188679245283],[144547200000,0.0471698113207547],[147225600000,0.0613207547169811],[149817600000,0.0707547169811321],[152496000000,0.0566037735849057],[155088000000,0.080188679245283],[157766400000,0.108490566037736],[160444800000,0.14622641509434],[162864000000,0.150943396226415],[165542400000,0.221698113207547],[168134400000,0.254716981132075],[170812800000,0.226415094339623],[173404800000,0.216981132075472],[176083200000,0.245283018867925],[178761600000,0.245283018867925],[181353600000,0.216981132075472],[184032000000,0.259433962264151],[186624000000,0.235849056603774],[189302400000,0.235849056603774],[191980800000,0.19811320754717],[194486400000,0.221698113207547],[197164800000,0.19811320754717],[199756800000,0.202830188679245],[202435200000,0.179245283018868],[205027200000,0.174528301886792],[207705600000,0.183962264150943],[210384000000,0.179245283018868],[212976000000,0.174528301886792],[215654400000,0.207547169811321],[218246400000,0.188679245283019],[220924800000,0.165094339622642],[223603200000,0.150943396226415],[226022400000,0.150943396226415],[228700800000,0.155660377358491],[231292800000,0.183962264150943],[233971200000,0.10377358490566],[236563200000,0.14622641509434],[239241600000,0.141509433962264],[241920000000,0.127358490566038],[244512000000,0.136792452830189],[247190400000,0.141509433962264],[249782400000,0.132075471698113],[252460800000,0.117924528301887],[255139200000,0.127358490566038],[257558400000,0.10377358490566],[260236800000,0.0990566037735849],[262828800000,0.080188679245283],[265507200000,0.0943396226415094],[268099200000,0.0849056603773585],[270777600000,0.0849056603773585],[273456000000,0.0754716981132075],[276048000000,0.089622641509434],[278726400000,0.0707547169811321],[281318400000,0.0754716981132075],[283996800000,0.089622641509434],[286675200000,0.089622641509434],[289094400000,0.089622641509434],[291772800000,0.0660377358490566],[294364800000,0.0754716981132075],[297043200000,0.0754716981132075],[299635200000,0.089622641509434],[302313600000,0.0377358490566038],[304992000000,0.0707547169811321],[307584000000,0.0707547169811321],[310262400000,0.0613207547169811],[312854400000,0.080188679245283],[315532800000,0.0613207547169811],[318211200000,0.0849056603773585],[320716800000,0.0943396226415094],[323395200000,0.0849056603773585],[325987200000,0.080188679245283],[328665600000,0.113207547169811],[331257600000,0.141509433962264],[333936000000,0.165094339622642],[336614400000,0.174528301886792],[339206400000,0.165094339622642],[341884800000,0.174528301886792],[344476800000,0.165094339622642],[347155200000,0.160377358490566],[349833600000,0.14622641509434],[352252800000,0.14622641509434],[354931200000,0.160377358490566],[357523200000,0.136792452830189],[360201600000,0.122641509433962],[362793600000,0.14622641509434],[365472000000,0.150943396226415],[368150400000,0.132075471698113],[370742400000,0.132075471698113],[373420800000,0.136792452830189],[376012800000,0.136792452830189],[378691200000,0.14622641509434],[381369600000,0.165094339622642],[383788800000,0.174528301886792],[386467200000,0.193396226415094],[389059200000,0.212264150943396],[391737600000,0.259433962264151],[394329600000,0.212264150943396],[397008000000,0.221698113207547],[399686400000,0.259433962264151],[402278400000,0.268867924528302],[404956800000,0.283018867924528],[407548800000,0.292452830188679],[410227200000,0.334905660377358],[412905600000,0.273584905660377],[415324800000,0.30188679245283],[418003200000,0.325471698113208],[420595200000,0.391509433962264],[423273600000,0.344339622641509],[425865600000,0.287735849056604],[428544000000,0.25],[431222400000,0.25],[433814400000,0.254716981132075],[436492800000,0.25],[439084800000,0.221698113207547],[441763200000,0.240566037735849],[444441600000,0.202830188679245],[446947200000,0.202830188679245],[449625600000,0.19811320754717],[452217600000,0.240566037735849],[454896000000,0.165094339622642],[457488000000,0.165094339622642],[460166400000,0.155660377358491],[462844800000,0.169811320754717],[465436800000,0.150943396226415],[468115200000,0.150943396226415],[470707200000,0.155660377358491],[473385600000,0.132075471698113],[476064000000,0.14622641509434],[478483200000,0.14622641509434],[481161600000,0.136792452830189],[483753600000,0.136792452830189],[486432000000,0.122641509433962],[489024000000,0.136792452830189],[491702400000,0.14622641509434],[494380800000,0.136792452830189],[496972800000,0.14622641509434],[499651200000,0.141509433962264],[502243200000,0.132075471698113],[504921600000,0.127358490566038],[507600000000,0.136792452830189],[510019200000,0.132075471698113],[512697600000,0.127358490566038],[515289600000,0.132075471698113],[517968000000,0.141509433962264],[520560000000,0.136792452830189],[523238400000,0.14622641509434],[525916800000,0.160377358490566],[528508800000,0.141509433962264],[531187200000,0.14622641509434],[533779200000,0.14622641509434],[536457600000,0.136792452830189],[539136000000,0.122641509433962],[541555200000,0.122641509433962],[544233600000,0.14622641509434],[546825600000,0.122641509433962],[549504000000,0.117924528301887],[552096000000,0.117924528301887],[554774400000,0.113207547169811],[557452800000,0.0943396226415094],[560044800000,0.108490566037736],[562723200000,0.10377358490566],[565315200000,0.0943396226415094],[567993600000,0.10377358490566],[570672000000,0.108490566037736],[573177600000,0.113207547169811],[575856000000,0.089622641509434],[578448000000,0.089622641509434],[581126400000,0.0849056603773585],[583718400000,0.0990566037735849],[586396800000,0.089622641509434],[589075200000,0.080188679245283],[591667200000,0.0754716981132075],[594345600000,0.080188679245283],[596937600000,0.089622641509434],[599616000000,0.0754716981132075],[602294400000,0.0660377358490566],[604713600000,0.0660377358490566],[607392000000,0.0660377358490566],[609984000000,0.0613207547169811],[612662400000,0.0660377358490566],[615254400000,0.0754716981132075],[617932800000,0.0471698113207547],[620611200000,0.0424528301886793],[623203200000,0.0424528301886793],[625881600000,0.0377358490566038],[628473600000,0.0424528301886793],[631152000000,0.0518867924528302],[633830400000,0.0613207547169811],[636249600000,0.0518867924528302],[638928000000,0.0377358490566038],[641520000000,0.0566037735849057],[644198400000,0.0566037735849057],[646790400000,0.0660377358490566],[649468800000,0.0660377358490566],[652147200000,0.0754716981132075],[654739200000,0.0849056603773585],[657417600000,0.080188679245283],[660009600000,0.089622641509434],[662688000000,0.0943396226415094],[665366400000,0.10377358490566],[667785600000,0.127358490566038],[670464000000,0.122641509433962],[673056000000,0.113207547169811],[675734400000,0.136792452830189],[678326400000,0.141509433962264],[681004800000,0.155660377358491],[683683200000,0.132075471698113],[686275200000,0.150943396226415],[688953600000,0.165094339622642],[691545600000,0.179245283018868],[694224000000,0.193396226415094],[696902400000,0.19811320754717],[699408000000,0.202830188679245],[702086400000,0.212264150943396],[704678400000,0.226415094339623],[707356800000,0.221698113207547],[709948800000,0.216981132075472],[712627200000,0.226415094339623],[715305600000,0.216981132075472],[717897600000,0.235849056603774],[720576000000,0.235849056603774],[723168000000,0.25],[725846400000,0.216981132075472],[728524800000,0.212264150943396],[730944000000,0.212264150943396],[733622400000,0.207547169811321],[736214400000,0.193396226415094],[738892800000,0.202830188679245],[741484800000,0.19811320754717],[744163200000,0.19811320754717],[746841600000,0.202830188679245],[749433600000,0.188679245283019],[752112000000,0.202830188679245],[754704000000,0.202830188679245],[757382400000,0.216981132075472],[760060800000,0.245283018867925],[762480000000,0.25],[765158400000,0.240566037735849],[767750400000,0.245283018867925],[770428800000,0.25],[773020800000,0.235849056603774],[775699200000,0.231132075471698],[778377600000,0.245283018867925],[780969600000,0.283018867924528],[783648000000,0.235849056603774],[786240000000,0.221698113207547],[788918400000,0.188679245283019],[791596800000,0.193396226415094],[794016000000,0.202830188679245],[796694400000,0.202830188679245],[799286400000,0.240566037735849],[801964800000,0.183962264150943],[804556800000,0.212264150943396],[807235200000,0.202830188679245],[809913600000,0.183962264150943],[812505600000,0.19811320754717],[815184000000,0.188679245283019],[817776000000,0.202830188679245],[820454400000,0.202830188679245],[823132800000,0.179245283018868],[825638400000,0.202830188679245],[828316800000,0.216981132075472],[830908800000,0.216981132075472],[833587200000,0.202830188679245],[836179200000,0.202830188679245],[838857600000,0.207547169811321],[841536000000,0.212264150943396],[844128000000,0.202830188679245],[846806400000,0.174528301886792],[849398400000,0.179245283018868],[852076800000,0.179245283018868],[854755200000,0.193396226415094],[857174400000,0.183962264150943],[859852800000,0.202830188679245],[862444800000,0.188679245283019],[865123200000,0.188679245283019],[867715200000,0.202830188679245],[870393600000,0.179245283018868],[873072000000,0.19811320754717],[875664000000,0.174528301886792],[878342400000,0.169811320754717],[880934400000,0.165094339622642],[883612800000,0.160377358490566],[886291200000,0.141509433962264],[888710400000,0.132075471698113],[891388800000,0.127358490566038],[893980800000,0.0943396226415094],[896659200000,0.136792452830189],[899251200000,0.127358490566038],[901929600000,0.132075471698113],[904608000000,0.127358490566038],[907200000000,0.0849056603773585],[909878400000,0.122641509433962],[912470400000,0.132075471698113],[915148800000,0.136792452830189],[917827200000,0.132075471698113],[920246400000,0.132075471698113],[922924800000,0.10377358490566],[925516800000,0.117924528301887],[928195200000,0.108490566037736],[930787200000,0.0849056603773585],[933465600000,0.117924528301887],[936144000000,0.0943396226415094],[938736000000,0.0990566037735849],[941414400000,0.10377358490566],[944006400000,0.0849056603773585],[946684800000,0.0849056603773585],[949363200000,0.0990566037735849],[951868800000,0.0943396226415094],[954547200000,0.0990566037735849],[957139200000,0.0849056603773585],[959817600000,0.080188679245283],[962409600000,0.0943396226415094],[965088000000,0.108490566037736],[967766400000,0.0566037735849057],[970358400000,0.0990566037735849],[973036800000,0.0990566037735849],[975628800000,0.0943396226415094],[978307200000,0.0849056603773585],[980985600000,0.0990566037735849],[983404800000,0.122641509433962],[986083200000,0.089622641509434],[988675200000,0.108490566037736],[991353600000,0.0943396226415094],[993945600000,0.132075471698113],[996624000000,0.136792452830189],[999302400000,0.150943396226415],[1001894400000,0.155660377358491],[1004572800000,0.174528301886792],[1007164800000,0.19811320754717],[1009843200000,0.207547169811321],[1012521600000,0.202830188679245],[1014940800000,0.207547169811321],[1017619200000,0.231132075471698],[1020211200000,0.259433962264151],[1022889600000,0.330188679245283],[1025481600000,0.231132075471698],[1028160000000,0.235849056603774],[1030838400000,0.259433962264151],[1033430400000,0.264150943396226],[1036108800000,0.25],[1038700800000,0.264150943396226],[1041379200000,0.264150943396226],[1044057600000,0.259433962264151],[1046476800000,0.268867924528302],[1049155200000,0.292452830188679],[1051747200000,0.278301886792453],[1054425600000,0.35377358490566],[1057017600000,0.297169811320755],[1059696000000,0.287735849056604],[1062374400000,0.292452830188679],[1064966400000,0.30188679245283],[1067644800000,0.297169811320755],[1070236800000,0.30188679245283],[1072915200000,0.311320754716981],[1075593600000,0.292452830188679],[1078099200000,0.292452830188679],[1080777600000,0.259433962264151],[1083369600000,0.278301886792453],[1086048000000,0.330188679245283],[1088640000000,0.231132075471698],[1091318400000,0.245283018867925],[1093996800000,0.264150943396226],[1096588800000,0.259433962264151],[1099267200000,0.268867924528302],[1101859200000,0.259433962264151],[1104537600000,0.254716981132075],[1107216000000,0.245283018867925],[1109635200000,0.25],[1112313600000,0.235849056603774],[1114905600000,0.240566037735849],[1117584000000,0.235849056603774],[1120176000000,0.226415094339623],[1122854400000,0.245283018867925],[1125532800000,0.207547169811321],[1128124800000,0.216981132075472],[1130803200000,0.212264150943396],[1133395200000,0.221698113207547],[1136073600000,0.216981132075472],[1138752000000,0.240566037735849],[1141171200000,0.221698113207547],[1143849600000,0.207547169811321],[1146441600000,0.212264150943396],[1149120000000,0.155660377358491],[1151712000000,0.188679245283019],[1154390400000,0.207547169811321],[1157068800000,0.188679245283019],[1159660800000,0.183962264150943],[1162339200000,0.202830188679245],[1164931200000,0.165094339622642],[1167609600000,0.202830188679245],[1170288000000,0.212264150943396],[1172707200000,0.240566037735849],[1175385600000,0.216981132075472],[1177977600000,0.19811320754717],[1180656000000,0.174528301886792],[1183248000000,0.221698113207547],[1185926400000,0.226415094339623],[1188604800000,0.221698113207547],[1191196800000,0.207547169811321],[1193875200000,0.216981132075472],[1196467200000,0.207547169811321],[1199145600000,0.235849056603774],[1201824000000,0.221698113207547],[1204329600000,0.221698113207547],[1207008000000,0.254716981132075],[1209600000000,0.183962264150943],[1212278400000,0.235849056603774],[1214870400000,0.268867924528302],[1217548800000,0.268867924528302],[1220227200000,0.292452830188679],[1222819200000,0.30188679245283],[1225497600000,0.273584905660377],[1228089600000,0.306603773584906],[1230768000000,0.316037735849057],[1233446400000,0.363207547169811],[1235865600000,0.391509433962264],[1238544000000,0.429245283018868],[1241136000000,0.481132075471698],[1243814400000,0.622641509433962],[1246406400000,0.566037735849057],[1249084800000,0.580188679245283],[1251763200000,0.650943396226415],[1254355200000,0.702830188679245],[1257033600000,0.745283018867925],[1259625600000,0.759433962264151],[1262304000000,0.754716981132076],[1264982400000,0.75],[1267401600000,0.773584905660377],[1270080000000,0.85377358490566],[1272672000000,0.863207547169811],[1275350400000,1],[1277942400000,0.863207547169811],[1280620800000,0.80188679245283],[1283299200000,0.768867924528302],[1285891200000,0.811320754716981],[1288569600000,0.80188679245283],[1291161600000,0.844339622641509],[1293840000000,0.825471698113208],[1296518400000,0.806603773584906],[1298937600000,0.825471698113208],[1301616000000,0.797169811320755],[1304208000000,0.830188679245283],[1306886400000,0.867924528301887],[1309478400000,0.849056603773585],[1312156800000,0.867924528301887],[1314835200000,0.849056603773585],[1317427200000,0.783018867924528],[1320105600000,0.792452830188679],[1322697600000,0.778301886792453],[1325376000000,0.792452830188679],[1328054400000,0.740566037735849],[1330560000000,0.716981132075472],[1333238400000,0.712264150943396],[1335830400000,0.75],[1338508800000,0.773584905660377],[1341100800000,0.636792452830189],[1343779200000,0.679245283018868],[1346457600000,0.69811320754717],[1349049600000,0.75],[1351728000000,0.688679245283019],[1354320000000,0.64622641509434],[1356998400000,0.556603773584906],[1359676800000,0.622641509433962],[1362096000000,0.641509433962264],[1364774400000,0.617924528301887],[1367366400000,0.617924528301887],[1370044800000,0.613207547169811],[1372636800000,0.575471698113208],[1375315200000,0.589622641509434],[1377993600000,0.589622641509434],[1380585600000,0.580188679245283],[1383264000000,0.617924528301887],[1385856000000,0.627358490566038],[1388534400000,0.537735849056604],[1391212800000,0.561320754716981],[1393632000000,0.556603773584906],[1396310400000,0.55188679245283],[1398902400000,0.5],[1401580800000,0.462264150943396],[1404172800000,0.429245283018868],[1406851200000,0.419811320754717],[1409529600000,0.443396226415094],[1412121600000,0.452830188679245],[1414800000000,0.424528301886792],[1417392000000,0.419811320754717],[1420070400000,0.433962264150943],[1422748800000,0.419811320754717],[1425168000000,0.377358490566038],[1427846400000,0.35377358490566]]},{\"name\":\"unemploy\",\"type\":\"line\",\"data\":[[-79056000000,0.0204468303465698],[-76377600000,0.0205257756374832],[-73699200000,0.0215520644193574],[-71107200000,0.0361569432383358],[-68428800000,0.0300781558380043],[-65836800000,0.0262887818741612],[-63158400000,0.0152364411462856],[-60480000000,0.0249467119286335],[-57974400000,0.0151574958553722],[-55296000000,0.00189468698192153],[-52704000000,0.00434199100023684],[-50025600000,0.0199731586010894],[-47433600000,0.0156311676008526],[-44755200000,0.00655245914581195],[-42076800000,7.8945290913397e-05],[-39484800000,0.000315781163653588],[-36806400000,0.00236835872740191],[-34214400000,0],[-31536000000,0.0026051946001421],[-28857600000,0.000552617036393779],[-26438400000,0.00213152285466172],[-23760000000,0.00576300623667798],[-21168000000,0.00221046814557512],[-18489600000,0.010341833109655],[-15897600000,0.0144469882371517],[-13219200000,0.0134996447461909],[-10540800000,0.0280255782742559],[-7948800000,0.0287360858924765],[-5270400000,0.0134996447461909],[-2678400000,0.015710112891766],[0,0.0407357701113129],[2678400000,0.0606299834214889],[5097600000,0.0749980263677272],[7776000000,0.0877871634956975],[10368000000,0.0974184889871319],[13046400000,0.109418173205968],[15638400000,0.117628483460962],[18316800000,0.124023052024947],[20995200000,0.139812110207626],[23587200000,0.150469724480935],[26265600000,0.174705928791348],[28857600000,0.188758190573932],[31536000000,0.181653114391727],[34214400000,0.175100655245915],[36633600000,0.18173205968264],[39312000000,0.179521591537065],[41904000000,0.182442567300861],[44582400000,0.178732138627931],[47174400000,0.185521433646483],[49852800000,0.193337017446909],[52531200000,0.186074050682877],[55123200000,0.179126865082498],[57801600000,0.195468540301571],[60393600000,0.194915923265177],[63072000000,0.184258308991869],[65750400000,0.17707428751875],[68256000000,0.185758269519223],[70934400000,0.179521591537065],[73526400000,0.176600615773269],[76204800000,0.176679561064183],[78796800000,0.175890108155049],[81475200000,0.177942685718797],[84153600000,0.170837609536591],[86745600000,0.172890187100339],[89424000000,0.151338122680982],[92016000000,0.146680350517092],[94694400000,0.129549222388884],[97372800000,0.139496329043973],[99792000000,0.134917502170995],[102470400000,0.140048946080366],[105062400000,0.129786058261625],[107740800000,0.13247019815268],[110332800000,0.127891371279703],[113011200000,0.127891371279703],[115689600000,0.131443909370806],[118281600000,0.115181179442646],[120960000000,0.135075392752822],[123552000000,0.142417304807768],[126230400000,0.154653824899345],[128908800000,0.16152206520881],[131328000000,0.153864371990211],[134006400000,0.152601247335596],[136598400000,0.159469487645062],[139276800000,0.176995342227836],[141868800000,0.187731901792058],[144547200000,0.184495144864609],[147225600000,0.217257440593669],[149817600000,0.224046735612221],[152496000000,0.272755980105787],[155088000000,0.311912844398832],[157766400000,0.38020052103892],[160444800000,0.381700481566275],[162864000000,0.41785742480461],[165542400000,0.436172732296519],[168134400000,0.453777532170206],[170812800000,0.436962185205652],[173404800000,0.429620273150707],[176083200000,0.413910160258941],[178761600000,0.413515433804374],[181353600000,0.411462856240625],[184032000000,0.403331491276545],[186624000000,0.399384226730875],[189302400000,0.382805715639062],[191980800000,0.366385095129076],[194486400000,0.358806347201389],[197164800000,0.366700876292729],[199756800000,0.344833030709718],[202435200000,0.366069313965422],[205027200000,0.379332122838873],[207705600000,0.381542590984448],[210384000000,0.370648140838399],[212976000000,0.374595405384069],[215654400000,0.389595010657614],[218246400000,0.383674113839109],[220924800000,0.362753611747059],[223603200000,0.375621694165943],[226022400000,0.364885134601721],[228700800000,0.345306702455199],[231292800000,0.333622799400016],[233971200000,0.351227599273703],[236563200000,0.327149285545117],[239241600000,0.334728033472803],[241920000000,0.320991552853872],[244512000000,0.321938896344833],[247190400000,0.32604405147233],[249782400000,0.292176521670482],[252460800000,0.300307886634562],[255139200000,0.286808241888371],[257558400000,0.288308202415726],[260236800000,0.275913791742323],[262828800000,0.271729691323913],[265507200000,0.263914107523486],[268099200000,0.286097734270151],[270777600000,0.268019262650983],[273456000000,0.271571800742086],[276048000000,0.257519538959501],[278726400000,0.267782426778243],[281318400000,0.279703165706166],[283996800000,0.270308676087471],[286675200000,0.275361174705929],[289094400000,0.270308676087471],[291772800000,0.267150864450935],[294364800000,0.249072392831768],[297043200000,0.258466882450462],[299635200000,0.261387858214258],[302313600000,0.286966132470198],[304992000000,0.276703244651457],[307584000000,0.285071445488277],[310262400000,0.2804926186153],[312854400000,0.287360858924765],[315532800000,0.315623273071761],[318211200000,0.317123233599116],[320716800000,0.319254756453778],[323395200000,0.368911344438304],[325987200000,0.418331096550091],[328665600000,0.427330859714218],[331257600000,0.448251361806268],[333936000000,0.44177784795137],[336614400000,0.421252072313886],[339206400000,0.426541406805084],[341884800000,0.421409962895713],[344476800000,0.397331649167127],[347155200000,0.425199336859556],[349833600000,0.423620431041288],[352252800000,0.418173205968264],[354931200000,0.40925238809505],[357523200000,0.433330701823636],[360201600000,0.427330859714218],[362793600000,0.40877871634957],[365472000000,0.422436251677587],[368150400000,0.437751638114786],[370742400000,0.47059287913476],[373420800000,0.500828925554591],[376012800000,0.519617904791979],[378691200000,0.529880792610721],[381369600000,0.554195942212047],[383788800000,0.569195547485593],[386467200000,0.596747454014368],[389059200000,0.603931475487487],[391737600000,0.619957369542907],[394329600000,0.644509355016973],[397008000000,0.647035604326202],[399686400000,0.673561222073103],[402278400000,0.698192152838083],[404956800000,0.730480776821663],[407548800000,0.739401594694876],[410227200000,0.69858687929265],[412905600000,0.699455277492698],[415324800000,0.688639772637562],[418003200000,0.677587431909687],[420595200000,0.668587668745559],[423273600000,0.675850635509592],[425865600000,0.620746822452041],[428544000000,0.626667719270546],[431222400000,0.599747375069077],[433814400000,0.568563985158285],[436492800000,0.537933212283887],[439084800000,0.524670403410437],[441763200000,0.499171074445409],[444441600000,0.482039946317202],[446947200000,0.478487408226099],[449625600000,0.479750532880714],[452217600000,0.455593273861214],[454896000000,0.437435856951133],[457488000000,0.461987842425199],[460166400000,0.460566827188758],[462844800000,0.448567142969922],[465436800000,0.449672377042709],[468115200000,0.435225388805558],[470707200000,0.447856635351701],[473385600000,0.452988079261072],[476064000000,0.444935659587906],[478483200000,0.446356674824347],[481161600000,0.450777611115497],[483753600000,0.443435699060551],[486432000000,0.455909055024868],[489024000000,0.460093155443278],[491702400000,0.435067498223731],[494380800000,0.439172653351228],[496972800000,0.443119917896897],[499651200000,0.42969921844162],[502243200000,0.430488671350754],[504921600000,0.403410436567459],[507600000000,0.451330228151891],[510019200000,0.449830267624536],[512697600000,0.448330307097182],[515289600000,0.454251203915686],[517968000000,0.459698428988711],[520560000000,0.444777769006079],[523238400000,0.430251835478014],[525916800000,0.444067261387858],[528508800000,0.438777926896661],[531187200000,0.432146522459935],[533779200000,0.410357622167838],[536457600000,0.411068129786058],[539136000000,0.408936606931397],[541555200000,0.408699771058656],[544233600000,0.383437277966369],[546825600000,0.385963527275598],[549504000000,0.37206915607484],[552096000000,0.361806268256099],[554774400000,0.361253651219705],[557452800000,0.348701349964475],[560044800000,0.358569511328649],[562723200000,0.343412015473277],[565315200000,0.335596431672851],[567993600000,0.336938501618378],[570672000000,0.335043814636457],[573177600000,0.330859714218047],[575856000000,0.309149759216863],[578448000000,0.323202020999447],[581126400000,0.304807768216626],[583718400000,0.309465540380516],[586396800000,0.328254519617905],[589075200000,0.309386595089603],[591667200000,0.306544564616721],[594345600000,0.304097260598405],[596937600000,0.302597300071051],[599616000000,0.315544327780848],[602294400000,0.290044998815821],[604713600000,0.277887424015157],[607392000000,0.298650035525381],[609984000000,0.291308123470435],[612662400000,0.307255072234941],[615254400000,0.300781558380043],[617932800000,0.302044683034657],[620611200000,0.308281361016815],[623203200000,0.311439172653351],[625881600000,0.318938975290124],[628473600000,0.314360148417147],[631152000000,0.321070498144786],[633830400000,0.313097023762533],[636249600000,0.308912923344123],[638928000000,0.324623036235889],[641520000000,0.320281045235652],[644198400000,0.308281361016815],[646790400000,0.334491197600063],[649468800000,0.355490644983027],[652147200000,0.369700797347438],[654739200000,0.376884818820557],[657417600000,0.400963132549143],[660009600000,0.411778637404279],[662688000000,0.420778400568406],[665366400000,0.440514723296755],[667785600000,0.465856161679956],[670464000000,0.454251203915686],[673056000000,0.477697955316965],[675734400000,0.474224362516776],[678326400000,0.465856161679956],[681004800000,0.472171784953028],[683683200000,0.476592721244178],[686275200000,0.486066156153785],[688953600000,0.493092287045078],[691545600000,0.514170679718955],[694224000000,0.520881029446594],[696902400000,0.534380674192784],[699408000000,0.534854345938265],[702086400000,0.531301807847162],[704678400000,0.55727480855767],[707356800000,0.580642614668035],[709948800000,0.56564300939449],[712627200000,0.560669456066946],[715305600000,0.560195784321465],[717897600000,0.529959737901634],[720576000000,0.543143601484172],[723168000000,0.542512039156864],[725846400000,0.524196731664956],[728524800000,0.512986500355254],[730944000000,0.502960448409252],[733622400000,0.507223494118576],[736214400000,0.510302360464198],[738892800000,0.508091892318623],[741484800000,0.493013341754164],[744163200000,0.479829478171627],[746841600000,0.475961158916871],[749433600000,0.478803189389753],[752112000000,0.462382568879766],[754704000000,0.457251124970395],[757382400000,0.469329754480145],[760060800000,0.465619325807216],[762480000000,0.456698507934002],[765158400000,0.44572511249704],[767750400000,0.412883871477066],[770428800000,0.413831214968027],[773020800000,0.415331175495382],[775699200000,0.414304886713508],[778377600000,0.398594773821742],[780969600000,0.390542354148575],[783648000000,0.370253414383832],[786240000000,0.358806347201389],[788918400000,0.370253414383832],[791596800000,0.355411699692113],[794016000000,0.352727559801058],[796694400000,0.391568642930449],[799286400000,0.374595405384069],[801964800000,0.374358569511329],[804556800000,0.382253098602668],[807235200000,0.378858451093392],[809913600000,0.378384779347912],[812505600000,0.366542985710902],[815184000000,0.374279624220415],[817776000000,0.374042788347675],[820454400000,0.379411068129786],[823132800000,0.365358806347201],[825638400000,0.365753532801768],[828316800000,0.373411226020368],[830908800000,0.374042788347675],[833587200000,0.348148732928081],[836179200000,0.367253493329123],[838857600000,0.331333385963527],[841536000000,0.338991079182127],[844128000000,0.343096234309623],[846806400000,0.35928001894687],[849398400000,0.360622088892398],[852076800000,0.353122286255625],[854755200000,0.348701349964475],[857174400000,0.340648930291308],[859852800000,0.330622878345307],[862444800000,0.313412804926186],[865123200000,0.324780926817715],[867715200000,0.313412804926186],[870393600000,0.309702376253256],[873072000000,0.3134917502171],[875664000000,0.297544801452593],[878342400000,0.286018788979237],[880934400000,0.299281597852688],[883612800000,0.290755506434041],[886291200000,0.285860898397411],[888710400000,0.295018552143365],[891388800000,0.257045867214021],[893980800000,0.265414068050841],[896659200000,0.278440041051551],[899251200000,0.282150469724481],[901929600000,0.275834846451409],[904608000000,0.28538722665193],[907200000000,0.283808320833662],[909878400000,0.269598168469251],[912470400000,0.26422988868714],[915148800000,0.25980895239599],[917827200000,0.270466566669298],[920246400000,0.244572511249704],[922924800000,0.262019420541565],[925516800000,0.245598800031578],[928195200000,0.257835320123155],[930787200000,0.263677271650746],[933465600000,0.248914502249941],[936144000000,0.254993289650272],[938736000000,0.244177784795137],[941414400000,0.239283176758506],[944006400000,0.234309623430962],[946684800000,0.238651614431199],[949363200000,0.250493408068209],[951868800000,0.240625246704034],[954547200000,0.220731033393858],[957139200000,0.242598878976869],[959817600000,0.234151732849136],[962409600000,0.241730480776822],[965088000000,0.250098681613642],[967766400000,0.232099155285387],[970358400000,0.224915133812268],[973036800000,0.233204389358175],[975628800000,0.232809662903608],[978307200000,0.263519381068919],[980985600000,0.268729770269203],[983404800000,0.2728349253967],[986083200000,0.283097813215442],[988675200000,0.279545275124339],[991353600000,0.299913160179995],[993945600000,0.307728743980422],[996624000000,0.343964632509671],[999302400000,0.35185916160101],[1001894400000,0.395436962185206],[1004572800000,0.419831057077445],[1007164800000,0.439962106260362],[1009843200000,0.433962264150943],[1012521600000,0.436567458751085],[1014940800000,0.443593589642378],[1017619200000,0.46688245046183],[1020211200000,0.451093392279151],[1022889600000,0.45061972053367],[1025481600000,0.45038288466093],[1028160000000,0.443593589642378],[1030838400000,0.439409489223968],[1033430400000,0.443830425515118],[1036108800000,0.460645772479672],[1038700800000,0.470119207389279],[1041379200000,0.460645772479672],[1044057600000,0.468382410989184],[1046476800000,0.466014052261783],[1049155200000,0.486066156153785],[1051747200000,0.495144864608826],[1054425600000,0.519538959501066],[1057017600000,0.49940791031815],[1059696000000,0.490329201863109],[1062374400000,0.492302834135944],[1064966400000,0.477382174153312],[1067644800000,0.465066708770822],[1070236800000,0.444619878424252],[1072915200000,0.448803978842662],[1075593600000,0.432778084787242],[1078099200000,0.458356359043183],[1080777600000,0.433014920659983],[1083369600000,0.436330622878345],[1086048000000,0.442172574405937],[1088640000000,0.430330780768927],[1091318400000,0.418804768295571],[1093996800000,0.413831214968027],[1096588800000,0.424409883950422],[1099267200000,0.414225941422594],[1101859200000,0.414383832004421],[1104537600000,0.402542038367411],[1107216000000,0.418015315386437],[1109635200000,0.398831609694482],[1112313600000,0.393700165785111],[1114905600000,0.39204231467593],[1117584000000,0.382016262729928],[1120176000000,0.372700718402147],[1122854400000,0.36788505565643],[1125532800000,0.384305676166417],[1128124800000,0.376411147075077],[1130803200000,0.385331964948291],[1133395200000,0.362674666456146],[1136073600000,0.345701428909766],[1138752000000,0.355174863819373],[1141171200000,0.346332991237073],[1143849600000,0.350122365200916],[1146441600000,0.33907002447304],[1149120000000,0.340727875582222],[1151712000000,0.354464356201153],[1154390400000,0.347832951764427],[1157068800000,0.328570300781558],[1159660800000,0.319096865871951],[1162339200000,0.330543933054393],[1164931200000,0.32185995105392],[1167609600000,0.349806584037262],[1170288000000,0.33488592405463],[1172707200000,0.319412647035604],[1175385600000,0.328807136654299],[1177977600000,0.322175732217573],[1180656000000,0.338991079182127],[1183248000000,0.352411778637404],[1185926400000,0.345938264782506],[1188604800000,0.354069629746586],[1191196800000,0.359358964237783],[1193875200000,0.359595800110523],[1196467200000,0.391568642930449],[1199145600000,0.394726454566985],[1201824000000,0.379884739875266],[1204329600000,0.40554195942212],[1207008000000,0.390937080603142],[1209600000000,0.450777611115497],[1212278400000,0.464987763479908],[1214870400000,0.493565958790558],[1217548800000,0.53311754953817],[1220227200000,0.53753848582932],[1222819200000,0.583326754559091],[1225497600000,0.619957369542907],[1228089600000,0.679008447146128],[1230768000000,0.73995421173127],[1233446400000,0.806268256098524],[1235865600000,0.847951369700797],[1238544000000,0.881661008920818],[1241136000000,0.932659666850872],[1243814400000,0.949080287360859],[1246406400000,0.940712086524039],[1249084800000,0.957527433488592],[1251763200000,0.972921765216705],[1254355200000,1],[1257033600000,0.989500276308518],[1259625600000,0.979947896107997],[1262304000000,0.975842740980501],[1264982400000,0.981132075471698],[1267401600000,0.98815820636299],[1270080000000,0.997868477145338],[1272672000000,0.960290518670561],[1275350400000,0.930686034578037],[1277942400000,0.933685955632746],[1280620800000,0.944422515196969],[1283299200000,0.938975290123944],[1285891200000,0.9340017367964],[1288569600000,0.978605826162469],[1291161600000,0.920738927922949],[1293840000000,0.894292255466961],[1296518400000,0.879055814320676],[1298937600000,0.872503355174864],[1301616000000,0.889871319175811],[1304208000000,0.881818899502645],[1306886400000,0.890266045630378],[1309478400000,0.874555932738612],[1312156800000,0.878897923738849],[1314835200000,0.889160811557591],[1317427200000,0.861214178574248],[1320105600000,0.838162153627536],[1322697600000,0.821662587826636],[1325376000000,0.798294781716271],[1328054400000,0.799557906370885],[1330560000000,0.791663377279545],[1333238400000,0.786374042788348],[1335830400000,0.787479276861135],[1338508800000,0.790005526170364],[1341100800000,0.787163495697482],[1343779200000,0.772558616878503],[1346457600000,0.744454093313334],[1349049600000,0.745164600931554],[1351728000000,0.73577011131286],[1354320000000,0.758901081550486],[1356998400000,0.772558616878503],[1359676800000,0.731428120312623],[1362096000000,0.710823399384227],[1364774400000,0.716428515039078],[1367366400000,0.708060314202258],[1370044800000,0.715718007420857],[1372636800000,0.682876766400884],[1375315200000,0.678455830109734],[1377993600000,0.677745322491513],[1380585600000,0.667166653509118],[1383264000000,0.639614746980343],[1385856000000,0.609378700560512],[1388534400000,0.593431751796005],[1391212800000,0.605036709560275],[1393632000000,0.60748401357859],[1396310400000,0.553959106339307],[1398902400000,0.56635351701271],[1401580800000,0.534854345938265],[1404172800000,0.546538248993447],[1406851200000,0.545827741375227],[1409529600000,0.519223178337412],[1412121600000,0.497750059208968],[1414800000000,0.505644588300308],[1417392000000,0.476197994789611],[1420070400000,0.490881818899503],[1422748800000,0.467750848661877],[1425168000000,0.459382647825057],[1427846400000,0.461119444225152]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/apex_grid.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a grid of ApexCharts — apex_grid","title":"Create a grid of ApexCharts — apex_grid","text":"Create grid ApexCharts","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apex_grid.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a grid of ApexCharts — apex_grid","text":"","code":"apex_grid( ..., nrow = NULL, ncol = NULL, row_gap = \"10px\", col_gap = \"0px\", grid_area = NULL, height = NULL, width = NULL, .list = NULL )"},{"path":"https://dreamrs.github.io/apexcharter/reference/apex_grid.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a grid of ApexCharts — apex_grid","text":"... Several apexcharts htmlwidget objects. nrow, ncol Number rows columns. row_gap, col_gap Gap rows columns. grid_area Custom grid area make elements take single cell grid, see https://cssgrid-generator.netlify.app/ examples. height, width Height width main grid. .list list apexcharts htmlwidget objects.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apex_grid.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Create a grid of ApexCharts — apex_grid","text":"Custom apex_grid object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apex_grid.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Create a grid of ApexCharts — apex_grid","text":"provide either height grid individual chart height make work.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apex_grid.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a grid of ApexCharts — apex_grid","text":"","code":"if (interactive()) { library(apexcharter) data(\"mpg\", package = \"ggplot2\") # Two chart side-by-side a1 <- apex(mpg, aes(manufacturer), type = \"bar\") a2 <- apex(mpg, aes(trans), type = \"column\") apex_grid(a1, a2, height = \"400px\") # More complex layout: a3 <- apex(mpg, aes(drv), type = \"pie\") apex_grid( a1, a2, a3, grid_area = c(\"1 / 1 / 3 / 2\", \"1 / 2 / 2 / 4\", \"2 / 2 / 3 / 4\"), ncol = 3, nrow = 2, height = \"600px\" ) }"},{"path":"https://dreamrs.github.io/apexcharter/reference/apexchart.html","id":null,"dir":"Reference","previous_headings":"","what":"Create an ApexCharts widget — apexchart","title":"Create an ApexCharts widget — apexchart","text":"Create ApexCharts widget","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexchart.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create an ApexCharts widget — apexchart","text":"","code":"apexchart( ax_opts = list(), auto_update = TRUE, width = NULL, height = NULL, elementId = NULL )"},{"path":"https://dreamrs.github.io/apexcharter/reference/apexchart.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create an ApexCharts widget — apexchart","text":"ax_opts list JSON format chart parameters. auto_update Shiny application, update existing chart rather generating new one. Can TRUE/FALSE use config_update() control. width, height numeric input pixels. elementId Use explicit element ID widget.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexchart.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Create an ApexCharts widget — apexchart","text":"apexchart()htmlwidget object.","code":""},{"path":[]},{"path":"https://dreamrs.github.io/apexcharter/reference/apexchart.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create an ApexCharts widget — apexchart","text":"","code":"library(apexcharter) # Use raw API by passing a list of # parameters to the function apexchart(ax_opts = list( chart = list( type = \"bar\" ), series = list(list( name = \"Example\", data = sample(1:100, 5) )), xaxis = list( categories = LETTERS[1:5] ) )) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"Example\",\"data\":[47,31,94,5,69]}],\"xaxis\":{\"categories\":[\"A\",\"B\",\"C\",\"D\",\"E\"]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false},\"evals\":[],\"jsHooks\":[]} # Or use apexchart() to initialize the chart # before passing parameters apexchart() %>% ax_chart(type = \"bar\") %>% ax_series( list( name = \"Example\", data = sample(1:100, 5) ) ) %>% ax_xaxis( categories = LETTERS[1:5] ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"Example\",\"data\":[38,13,44,64,17]}],\"xaxis\":{\"categories\":[\"A\",\"B\",\"C\",\"D\",\"E\"]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/apexchartProxy.html","id":null,"dir":"Reference","previous_headings":"","what":"Proxy for apexchart — apexchartProxy","title":"Proxy for apexchart — apexchartProxy","text":"Allow update chart Shiny application.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexchartProxy.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Proxy for apexchart — apexchartProxy","text":"","code":"apexchartProxy(shinyId, session = shiny::getDefaultReactiveDomain())"},{"path":"https://dreamrs.github.io/apexcharter/reference/apexchartProxy.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Proxy for apexchart — apexchartProxy","text":"shinyId single-element character vector indicating output ID chart modify (invoked Shiny module, namespace added automatically) session Shiny session object chart belongs; usually default value suffice","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-exports.html","id":null,"dir":"Reference","previous_headings":"","what":"apexcharter exported operators and S3 methods — apexcharter-exports","title":"apexcharter exported operators and S3 methods — apexcharter-exports","text":"following functions imported re-exported apexcharter package avoid listing magrittr Depends apexcharter","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-package.html","id":null,"dir":"Reference","previous_headings":"","what":"An htmlwidget interface to the\nApexCharts javascript chart library — apexcharter-package","title":"An htmlwidget interface to the\nApexCharts javascript chart library — apexcharter-package","text":"package allow use ApexCharts.js (https://apexcharts.com/), create interactive modern SVG charts.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-package.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"An htmlwidget interface to the\nApexCharts javascript chart library — apexcharter-package","text":"Victor Perrier (@dreamRs_fr)","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny-facets.html","id":null,"dir":"Reference","previous_headings":"","what":"Shiny bindings for faceting with apexcharter — apexcharter-shiny-facets","title":"Shiny bindings for faceting with apexcharter — apexcharter-shiny-facets","text":"Output render functions using apexcharter faceting within Shiny applications interactive Rmd documents.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny-facets.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Shiny bindings for faceting with apexcharter — apexcharter-shiny-facets","text":"","code":"apexfacetOutput(outputId) renderApexfacet(expr, env = parent.frame(), quoted = FALSE)"},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny-facets.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Shiny bindings for faceting with apexcharter — apexcharter-shiny-facets","text":"outputId output variable read expr expression generates apexcharter facet ax_facet_wrap() ax_facet_grid(). env environment evaluate expr. quoted expr quoted expression (quote())? useful want save expression variable.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny-facets.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Shiny bindings for faceting with apexcharter — apexcharter-shiny-facets","text":"Apexcharts output can included application UI.","code":""},{"path":[]},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny-facets.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Shiny bindings for faceting with apexcharter — apexcharter-shiny-facets","text":"","code":"library(shiny) library(apexcharter) data(\"unhcr_ts\") refugees <- unhcr_ts %>% subset( population_type == \"Refugees (incl. refugee-like situations)\" ) %>% transform(date = as.Date(paste0(year, \"-01-01\"))) ui <- fluidPage( tags$h2(\"Apexcharts Facets Example\"), apexfacetOutput(\"myfacet\") ) server <- function(input, output, session) { output$myfacet <- renderApexfacet({ apex(refugees, aes(date, n), type = \"column\") %>% ax_yaxis(tickAmount = 5) %>% ax_facet_wrap( vars(continent_origin), scales = \"free\" ) }) } if (interactive()) shinyApp(ui, server)"},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny-grid.html","id":null,"dir":"Reference","previous_headings":"","what":"Shiny bindings for grid with apexcharter — apexcharter-shiny-grid","title":"Shiny bindings for grid with apexcharter — apexcharter-shiny-grid","text":"Output render functions using apexcharter grid within Shiny applications interactive Rmd documents.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny-grid.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Shiny bindings for grid with apexcharter — apexcharter-shiny-grid","text":"","code":"apexgridOutput(outputId) renderApexgrid(expr, env = parent.frame(), quoted = FALSE)"},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny-grid.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Shiny bindings for grid with apexcharter — apexcharter-shiny-grid","text":"outputId output variable read expr expression generates apexcharter grid. env environment evaluate expr. quoted expr quoted expression (quote())? useful want save expression variable.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny-grid.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Shiny bindings for grid with apexcharter — apexcharter-shiny-grid","text":"Apexcharts output can included application UI.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny-grid.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Shiny bindings for grid with apexcharter — apexcharter-shiny-grid","text":"","code":"library(shiny) library(apexcharter) ui <- fluidPage( tags$h2(\"Apexcharts Grid Example\"), apexgridOutput(\"myfacet\") ) server <- function(input, output, session) { output$myfacet <- renderApexgrid({ a1 <- apex(mpg, aes(manufacturer), type = \"bar\") a2 <- apex(mpg, aes(trans), type = \"column\") a3 <- apex(mpg, aes(drv), type = \"pie\") apex_grid( a1, a2, a3, grid_area = c(\"1 / 1 / 3 / 2\", \"1 / 2 / 2 / 4\", \"2 / 2 / 3 / 4\"), ncol = 3, nrow = 2, height = \"600px\" ) }) } if (interactive()) shinyApp(ui, server)"},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny.html","id":null,"dir":"Reference","previous_headings":"","what":"Shiny bindings for apexcharter — apexcharter-shiny","title":"Shiny bindings for apexcharter — apexcharter-shiny","text":"Output render functions using apexcharter within Shiny applications interactive Rmd documents.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Shiny bindings for apexcharter — apexcharter-shiny","text":"","code":"apexchartOutput(outputId, width = \"100%\", height = \"400px\") renderApexchart(expr, env = parent.frame(), quoted = FALSE) sparkBoxOutput(outputId, width = \"100%\", height = \"160px\") renderSparkBox(expr, env = parent.frame(), quoted = FALSE)"},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Shiny bindings for apexcharter — apexcharter-shiny","text":"outputId Output variable read . width, height Must valid CSS unit (like 100%, 400px, auto) number, coerced string px appended. expr expression generates calendar env environment evaluate expr. quoted expr quoted expression (quote())? useful want save expression variable.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Shiny bindings for apexcharter — apexcharter-shiny","text":"Output element can included UI. Render function create output server.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Shiny bindings for apexcharter — apexcharter-shiny","text":"render chart facets (using ax_facet_wrap() ax_facet_grid()) Shiny, see apexfacetOutput() (UI) renderApexfacet() (Server).","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/apexcharter-shiny.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Shiny bindings for apexcharter — apexcharter-shiny","text":"","code":"if (interactive()) { library(shiny) library(apexcharter) ui <- fluidPage( fluidRow( column( width = 8, offset = 2, tags$h2(\"Apexchart in Shiny\"), actionButton(\"redraw\", \"Redraw chart\"), apexchartOutput(\"chart\") ) ) ) server <- function(input, output, session) { output$chart <- renderApexchart({ input$redraw apexchart() %>% ax_chart(type = \"bar\") %>% ax_series( list( name = \"Example\", data = sample(1:100, 5) ) ) %>% ax_xaxis( categories = LETTERS[1:5] ) }) } shinyApp(ui, server) }"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax-series.html","id":null,"dir":"Reference","previous_headings":"","what":"Add data to a chart — ax-series","title":"Add data to a chart — ax-series","text":"Add data chart","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax-series.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Add data to a chart — ax-series","text":"","code":"ax_series(ax, ...) ax_series2(ax, l)"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax-series.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Add data to a chart — ax-series","text":"ax apexchart() htmlwidget object. ... Lists containing data plot, typically list two items: name data. l list.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax-series.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Add data to a chart — ax-series","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax-series.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Add data to a chart — ax-series","text":"","code":"# One serie apexchart() %>% ax_series(list( name = \"rnorm\", data = rnorm(10) )) {\"x\":{\"ax_opts\":{\"series\":[{\"name\":\"rnorm\",\"data\":[-1.15445640902982,1.322973114172,-0.254754495894049,0.418742641688708,1.26268936101004,-0.501556271526819,0.272764565567678,-0.321927402389153,0.741248247110668,-0.0798902785219603]}]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false},\"evals\":[],\"jsHooks\":[]} # Two series apexchart() %>% ax_series( list( name = \"rnorm 1\", data = rnorm(10) ), list( name = \"rnorm 2\", data = rnorm(10) ) ) {\"x\":{\"ax_opts\":{\"series\":[{\"name\":\"rnorm 1\",\"data\":[-2.06884691418425,1.08018106132241,-1.19812052618052,-0.532716256947675,-0.413623871802209,-0.494113350467625,0.585908724804639,0.632111522967045,-0.139611025015059,-2.43820522148696]},{\"name\":\"rnorm 2\",\"data\":[-0.602616497635785,-0.0235804582028367,0.218075955648598,-1.30653092813757,0.604132966316795,0.45291852984187,-1.62211428510564,0.878998794483288,-0.226160571954497,1.03830005853724]}]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_annotations.html","id":null,"dir":"Reference","previous_headings":"","what":"Annotations properties — ax_annotations","title":"Annotations properties — ax_annotations","text":"Annotations properties","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_annotations.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Annotations properties — ax_annotations","text":"","code":"ax_annotations( ax, position = NULL, yaxis = NULL, xaxis = NULL, points = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_annotations.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Annotations properties — ax_annotations","text":"ax apexchart() htmlwidget object. position Whether put annotations behind charts front . Available Options: \"front\" \"back\". yaxis List lists. xaxis List lists. points List lists. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_annotations.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Annotations properties — ax_annotations","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_annotations.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Annotations properties — ax_annotations","text":"See https://apexcharts.com/docs/options/annotations/.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_annotations.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Annotations properties — ax_annotations","text":"","code":"data(\"economics\", package = \"ggplot2\") # Horizontal line apex( data = tail(economics, 200), mapping = aes(x = date, y = uempmed), type = \"line\" ) %>% ax_annotations( yaxis = list(list( y = 11.897, borderColor = \"firebrick\", opacity = 1, label = list( text = \"Mean uempmed\", position = \"left\", textAnchor = \"start\" ) )) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[904608000000,6.7],[907200000000,5.8],[909878400000,6.6],[912470400000,6.8],[915148800000,6.9],[917827200000,6.8],[920246400000,6.8],[922924800000,6.2],[925516800000,6.5],[928195200000,6.3],[930787200000,5.8],[933465600000,6.5],[936144000000,6],[938736000000,6.1],[941414400000,6.2],[944006400000,5.8],[946684800000,5.8],[949363200000,6.1],[951868800000,6],[954547200000,6.1],[957139200000,5.8],[959817600000,5.7],[962409600000,6],[965088000000,6.3],[967766400000,5.2],[970358400000,6.1],[973036800000,6.1],[975628800000,6],[978307200000,5.8],[980985600000,6.1],[983404800000,6.6],[986083200000,5.9],[988675200000,6.3],[991353600000,6],[993945600000,6.8],[996624000000,6.9],[999302400000,7.2],[1001894400000,7.3],[1004572800000,7.7],[1007164800000,8.2],[1009843200000,8.4],[1012521600000,8.3],[1014940800000,8.4],[1017619200000,8.9],[1020211200000,9.5],[1022889600000,11],[1025481600000,8.9],[1028160000000,9],[1030838400000,9.5],[1033430400000,9.6],[1036108800000,9.3],[1038700800000,9.6],[1041379200000,9.6],[1044057600000,9.5],[1046476800000,9.7],[1049155200000,10.2],[1051747200000,9.9],[1054425600000,11.5],[1057017600000,10.3],[1059696000000,10.1],[1062374400000,10.2],[1064966400000,10.4],[1067644800000,10.3],[1070236800000,10.4],[1072915200000,10.6],[1075593600000,10.2],[1078099200000,10.2],[1080777600000,9.5],[1083369600000,9.9],[1086048000000,11],[1088640000000,8.9],[1091318400000,9.2],[1093996800000,9.6],[1096588800000,9.5],[1099267200000,9.7],[1101859200000,9.5],[1104537600000,9.4],[1107216000000,9.2],[1109635200000,9.3],[1112313600000,9],[1114905600000,9.1],[1117584000000,9],[1120176000000,8.8],[1122854400000,9.2],[1125532800000,8.4],[1128124800000,8.6],[1130803200000,8.5],[1133395200000,8.7],[1136073600000,8.6],[1138752000000,9.1],[1141171200000,8.7],[1143849600000,8.4],[1146441600000,8.5],[1149120000000,7.3],[1151712000000,8],[1154390400000,8.4],[1157068800000,8],[1159660800000,7.9],[1162339200000,8.3],[1164931200000,7.5],[1167609600000,8.3],[1170288000000,8.5],[1172707200000,9.1],[1175385600000,8.6],[1177977600000,8.2],[1180656000000,7.7],[1183248000000,8.7],[1185926400000,8.8],[1188604800000,8.7],[1191196800000,8.4],[1193875200000,8.6],[1196467200000,8.4],[1199145600000,9],[1201824000000,8.7],[1204329600000,8.7],[1207008000000,9.4],[1209600000000,7.9],[1212278400000,9],[1214870400000,9.7],[1217548800000,9.7],[1220227200000,10.2],[1222819200000,10.4],[1225497600000,9.8],[1228089600000,10.5],[1230768000000,10.7],[1233446400000,11.7],[1235865600000,12.3],[1238544000000,13.1],[1241136000000,14.2],[1243814400000,17.2],[1246406400000,16],[1249084800000,16.3],[1251763200000,17.8],[1254355200000,18.9],[1257033600000,19.8],[1259625600000,20.1],[1262304000000,20],[1264982400000,19.9],[1267401600000,20.4],[1270080000000,22.1],[1272672000000,22.3],[1275350400000,25.2],[1277942400000,22.3],[1280620800000,21],[1283299200000,20.3],[1285891200000,21.2],[1288569600000,21],[1291161600000,21.9],[1293840000000,21.5],[1296518400000,21.1],[1298937600000,21.5],[1301616000000,20.9],[1304208000000,21.6],[1306886400000,22.4],[1309478400000,22],[1312156800000,22.4],[1314835200000,22],[1317427200000,20.6],[1320105600000,20.8],[1322697600000,20.5],[1325376000000,20.8],[1328054400000,19.7],[1330560000000,19.2],[1333238400000,19.1],[1335830400000,19.9],[1338508800000,20.4],[1341100800000,17.5],[1343779200000,18.4],[1346457600000,18.8],[1349049600000,19.9],[1351728000000,18.6],[1354320000000,17.7],[1356998400000,15.8],[1359676800000,17.2],[1362096000000,17.6],[1364774400000,17.1],[1367366400000,17.1],[1370044800000,17],[1372636800000,16.2],[1375315200000,16.5],[1377993600000,16.5],[1380585600000,16.3],[1383264000000,17.1],[1385856000000,17.3],[1388534400000,15.4],[1391212800000,15.9],[1393632000000,15.8],[1396310400000,15.7],[1398902400000,14.6],[1401580800000,13.8],[1404172800000,13.1],[1406851200000,12.9],[1409529600000,13.4],[1412121600000,13.6],[1414800000000,13],[1417392000000,12.9],[1420070400000,13.2],[1422748800000,12.9],[1425168000000,12],[1427846400000,11.5]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"yaxis\":[{\"y\":11.897,\"borderColor\":\"firebrick\",\"opacity\":1,\"label\":{\"text\":\"Mean uempmed\",\"position\":\"left\",\"textAnchor\":\"start\"}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1998-09-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]} # Vertical line apex( data = tail(economics, 200), mapping = aes(x = date, y = uempmed), type = \"line\" ) %>% ax_annotations( xaxis = list(list( x = htmlwidgets::JS(\"new Date('1 Mar 2007').getTime()\"), strokeDashArray = 0, borderColor = \"#775DD0\", label = list( text = \"A label\", borderColor = \"#775DD0\", style = list( color = \"#fff\", background = \"#775DD0\" ) ) )) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[904608000000,6.7],[907200000000,5.8],[909878400000,6.6],[912470400000,6.8],[915148800000,6.9],[917827200000,6.8],[920246400000,6.8],[922924800000,6.2],[925516800000,6.5],[928195200000,6.3],[930787200000,5.8],[933465600000,6.5],[936144000000,6],[938736000000,6.1],[941414400000,6.2],[944006400000,5.8],[946684800000,5.8],[949363200000,6.1],[951868800000,6],[954547200000,6.1],[957139200000,5.8],[959817600000,5.7],[962409600000,6],[965088000000,6.3],[967766400000,5.2],[970358400000,6.1],[973036800000,6.1],[975628800000,6],[978307200000,5.8],[980985600000,6.1],[983404800000,6.6],[986083200000,5.9],[988675200000,6.3],[991353600000,6],[993945600000,6.8],[996624000000,6.9],[999302400000,7.2],[1001894400000,7.3],[1004572800000,7.7],[1007164800000,8.2],[1009843200000,8.4],[1012521600000,8.3],[1014940800000,8.4],[1017619200000,8.9],[1020211200000,9.5],[1022889600000,11],[1025481600000,8.9],[1028160000000,9],[1030838400000,9.5],[1033430400000,9.6],[1036108800000,9.3],[1038700800000,9.6],[1041379200000,9.6],[1044057600000,9.5],[1046476800000,9.7],[1049155200000,10.2],[1051747200000,9.9],[1054425600000,11.5],[1057017600000,10.3],[1059696000000,10.1],[1062374400000,10.2],[1064966400000,10.4],[1067644800000,10.3],[1070236800000,10.4],[1072915200000,10.6],[1075593600000,10.2],[1078099200000,10.2],[1080777600000,9.5],[1083369600000,9.9],[1086048000000,11],[1088640000000,8.9],[1091318400000,9.2],[1093996800000,9.6],[1096588800000,9.5],[1099267200000,9.7],[1101859200000,9.5],[1104537600000,9.4],[1107216000000,9.2],[1109635200000,9.3],[1112313600000,9],[1114905600000,9.1],[1117584000000,9],[1120176000000,8.8],[1122854400000,9.2],[1125532800000,8.4],[1128124800000,8.6],[1130803200000,8.5],[1133395200000,8.7],[1136073600000,8.6],[1138752000000,9.1],[1141171200000,8.7],[1143849600000,8.4],[1146441600000,8.5],[1149120000000,7.3],[1151712000000,8],[1154390400000,8.4],[1157068800000,8],[1159660800000,7.9],[1162339200000,8.3],[1164931200000,7.5],[1167609600000,8.3],[1170288000000,8.5],[1172707200000,9.1],[1175385600000,8.6],[1177977600000,8.2],[1180656000000,7.7],[1183248000000,8.7],[1185926400000,8.8],[1188604800000,8.7],[1191196800000,8.4],[1193875200000,8.6],[1196467200000,8.4],[1199145600000,9],[1201824000000,8.7],[1204329600000,8.7],[1207008000000,9.4],[1209600000000,7.9],[1212278400000,9],[1214870400000,9.7],[1217548800000,9.7],[1220227200000,10.2],[1222819200000,10.4],[1225497600000,9.8],[1228089600000,10.5],[1230768000000,10.7],[1233446400000,11.7],[1235865600000,12.3],[1238544000000,13.1],[1241136000000,14.2],[1243814400000,17.2],[1246406400000,16],[1249084800000,16.3],[1251763200000,17.8],[1254355200000,18.9],[1257033600000,19.8],[1259625600000,20.1],[1262304000000,20],[1264982400000,19.9],[1267401600000,20.4],[1270080000000,22.1],[1272672000000,22.3],[1275350400000,25.2],[1277942400000,22.3],[1280620800000,21],[1283299200000,20.3],[1285891200000,21.2],[1288569600000,21],[1291161600000,21.9],[1293840000000,21.5],[1296518400000,21.1],[1298937600000,21.5],[1301616000000,20.9],[1304208000000,21.6],[1306886400000,22.4],[1309478400000,22],[1312156800000,22.4],[1314835200000,22],[1317427200000,20.6],[1320105600000,20.8],[1322697600000,20.5],[1325376000000,20.8],[1328054400000,19.7],[1330560000000,19.2],[1333238400000,19.1],[1335830400000,19.9],[1338508800000,20.4],[1341100800000,17.5],[1343779200000,18.4],[1346457600000,18.8],[1349049600000,19.9],[1351728000000,18.6],[1354320000000,17.7],[1356998400000,15.8],[1359676800000,17.2],[1362096000000,17.6],[1364774400000,17.1],[1367366400000,17.1],[1370044800000,17],[1372636800000,16.2],[1375315200000,16.5],[1377993600000,16.5],[1380585600000,16.3],[1383264000000,17.1],[1385856000000,17.3],[1388534400000,15.4],[1391212800000,15.9],[1393632000000,15.8],[1396310400000,15.7],[1398902400000,14.6],[1401580800000,13.8],[1404172800000,13.1],[1406851200000,12.9],[1409529600000,13.4],[1412121600000,13.6],[1414800000000,13],[1417392000000,12.9],[1420070400000,13.2],[1422748800000,12.9],[1425168000000,12],[1427846400000,11.5]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"xaxis\":[{\"x\":\"new Date('1 Mar 2007').getTime()\",\"strokeDashArray\":0,\"borderColor\":\"#775DD0\",\"label\":{\"text\":\"A label\",\"borderColor\":\"#775DD0\",\"style\":{\"color\":\"#fff\",\"background\":\"#775DD0\"}}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1998-09-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[\"ax_opts.annotations.xaxis.0.x\"],\"jsHooks\":[]} # Vertical range apex( data = tail(economics, 200), mapping = aes(x = date, y = uempmed), type = \"line\" ) %>% ax_annotations( xaxis = list(list( x = htmlwidgets::JS(\"new Date('1 Jan 2009').getTime()\"), x2 = htmlwidgets::JS(\"new Date('1 Feb 2010').getTime()\"), fillColor = \"#B3F7CA\", opacity = 0.4, label = list( text = \"A label\", borderColor = \"#B3F7CA\", style = list( color = \"#fff\", background = \"#B3F7CA\" ) ) )) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[904608000000,6.7],[907200000000,5.8],[909878400000,6.6],[912470400000,6.8],[915148800000,6.9],[917827200000,6.8],[920246400000,6.8],[922924800000,6.2],[925516800000,6.5],[928195200000,6.3],[930787200000,5.8],[933465600000,6.5],[936144000000,6],[938736000000,6.1],[941414400000,6.2],[944006400000,5.8],[946684800000,5.8],[949363200000,6.1],[951868800000,6],[954547200000,6.1],[957139200000,5.8],[959817600000,5.7],[962409600000,6],[965088000000,6.3],[967766400000,5.2],[970358400000,6.1],[973036800000,6.1],[975628800000,6],[978307200000,5.8],[980985600000,6.1],[983404800000,6.6],[986083200000,5.9],[988675200000,6.3],[991353600000,6],[993945600000,6.8],[996624000000,6.9],[999302400000,7.2],[1001894400000,7.3],[1004572800000,7.7],[1007164800000,8.2],[1009843200000,8.4],[1012521600000,8.3],[1014940800000,8.4],[1017619200000,8.9],[1020211200000,9.5],[1022889600000,11],[1025481600000,8.9],[1028160000000,9],[1030838400000,9.5],[1033430400000,9.6],[1036108800000,9.3],[1038700800000,9.6],[1041379200000,9.6],[1044057600000,9.5],[1046476800000,9.7],[1049155200000,10.2],[1051747200000,9.9],[1054425600000,11.5],[1057017600000,10.3],[1059696000000,10.1],[1062374400000,10.2],[1064966400000,10.4],[1067644800000,10.3],[1070236800000,10.4],[1072915200000,10.6],[1075593600000,10.2],[1078099200000,10.2],[1080777600000,9.5],[1083369600000,9.9],[1086048000000,11],[1088640000000,8.9],[1091318400000,9.2],[1093996800000,9.6],[1096588800000,9.5],[1099267200000,9.7],[1101859200000,9.5],[1104537600000,9.4],[1107216000000,9.2],[1109635200000,9.3],[1112313600000,9],[1114905600000,9.1],[1117584000000,9],[1120176000000,8.8],[1122854400000,9.2],[1125532800000,8.4],[1128124800000,8.6],[1130803200000,8.5],[1133395200000,8.7],[1136073600000,8.6],[1138752000000,9.1],[1141171200000,8.7],[1143849600000,8.4],[1146441600000,8.5],[1149120000000,7.3],[1151712000000,8],[1154390400000,8.4],[1157068800000,8],[1159660800000,7.9],[1162339200000,8.3],[1164931200000,7.5],[1167609600000,8.3],[1170288000000,8.5],[1172707200000,9.1],[1175385600000,8.6],[1177977600000,8.2],[1180656000000,7.7],[1183248000000,8.7],[1185926400000,8.8],[1188604800000,8.7],[1191196800000,8.4],[1193875200000,8.6],[1196467200000,8.4],[1199145600000,9],[1201824000000,8.7],[1204329600000,8.7],[1207008000000,9.4],[1209600000000,7.9],[1212278400000,9],[1214870400000,9.7],[1217548800000,9.7],[1220227200000,10.2],[1222819200000,10.4],[1225497600000,9.8],[1228089600000,10.5],[1230768000000,10.7],[1233446400000,11.7],[1235865600000,12.3],[1238544000000,13.1],[1241136000000,14.2],[1243814400000,17.2],[1246406400000,16],[1249084800000,16.3],[1251763200000,17.8],[1254355200000,18.9],[1257033600000,19.8],[1259625600000,20.1],[1262304000000,20],[1264982400000,19.9],[1267401600000,20.4],[1270080000000,22.1],[1272672000000,22.3],[1275350400000,25.2],[1277942400000,22.3],[1280620800000,21],[1283299200000,20.3],[1285891200000,21.2],[1288569600000,21],[1291161600000,21.9],[1293840000000,21.5],[1296518400000,21.1],[1298937600000,21.5],[1301616000000,20.9],[1304208000000,21.6],[1306886400000,22.4],[1309478400000,22],[1312156800000,22.4],[1314835200000,22],[1317427200000,20.6],[1320105600000,20.8],[1322697600000,20.5],[1325376000000,20.8],[1328054400000,19.7],[1330560000000,19.2],[1333238400000,19.1],[1335830400000,19.9],[1338508800000,20.4],[1341100800000,17.5],[1343779200000,18.4],[1346457600000,18.8],[1349049600000,19.9],[1351728000000,18.6],[1354320000000,17.7],[1356998400000,15.8],[1359676800000,17.2],[1362096000000,17.6],[1364774400000,17.1],[1367366400000,17.1],[1370044800000,17],[1372636800000,16.2],[1375315200000,16.5],[1377993600000,16.5],[1380585600000,16.3],[1383264000000,17.1],[1385856000000,17.3],[1388534400000,15.4],[1391212800000,15.9],[1393632000000,15.8],[1396310400000,15.7],[1398902400000,14.6],[1401580800000,13.8],[1404172800000,13.1],[1406851200000,12.9],[1409529600000,13.4],[1412121600000,13.6],[1414800000000,13],[1417392000000,12.9],[1420070400000,13.2],[1422748800000,12.9],[1425168000000,12],[1427846400000,11.5]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"xaxis\":[{\"x\":\"new Date('1 Jan 2009').getTime()\",\"x2\":\"new Date('1 Feb 2010').getTime()\",\"fillColor\":\"#B3F7CA\",\"opacity\":0.4,\"label\":{\"text\":\"A label\",\"borderColor\":\"#B3F7CA\",\"style\":{\"color\":\"#fff\",\"background\":\"#B3F7CA\"}}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1998-09-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[\"ax_opts.annotations.xaxis.0.x\",\"ax_opts.annotations.xaxis.0.x2\"],\"jsHooks\":[]} # Point annotation apex( data = tail(economics, 200), mapping = aes(x = date, y = uempmed), type = \"line\" ) %>% ax_annotations( points = list(list( x = htmlwidgets::JS(\"new Date('1 Jun 2010').getTime()\"), y = 25.2, marker = list( size = 8, fillColor = \"#fff\", strokeColor = \"red\", radius = 2 ), label = list( text = \"Highest\", offsetY = 0, borderColor = \"#FF4560\", style = list( color = \"#fff\", background = \"#FF4560\" ) ) )) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[904608000000,6.7],[907200000000,5.8],[909878400000,6.6],[912470400000,6.8],[915148800000,6.9],[917827200000,6.8],[920246400000,6.8],[922924800000,6.2],[925516800000,6.5],[928195200000,6.3],[930787200000,5.8],[933465600000,6.5],[936144000000,6],[938736000000,6.1],[941414400000,6.2],[944006400000,5.8],[946684800000,5.8],[949363200000,6.1],[951868800000,6],[954547200000,6.1],[957139200000,5.8],[959817600000,5.7],[962409600000,6],[965088000000,6.3],[967766400000,5.2],[970358400000,6.1],[973036800000,6.1],[975628800000,6],[978307200000,5.8],[980985600000,6.1],[983404800000,6.6],[986083200000,5.9],[988675200000,6.3],[991353600000,6],[993945600000,6.8],[996624000000,6.9],[999302400000,7.2],[1001894400000,7.3],[1004572800000,7.7],[1007164800000,8.2],[1009843200000,8.4],[1012521600000,8.3],[1014940800000,8.4],[1017619200000,8.9],[1020211200000,9.5],[1022889600000,11],[1025481600000,8.9],[1028160000000,9],[1030838400000,9.5],[1033430400000,9.6],[1036108800000,9.3],[1038700800000,9.6],[1041379200000,9.6],[1044057600000,9.5],[1046476800000,9.7],[1049155200000,10.2],[1051747200000,9.9],[1054425600000,11.5],[1057017600000,10.3],[1059696000000,10.1],[1062374400000,10.2],[1064966400000,10.4],[1067644800000,10.3],[1070236800000,10.4],[1072915200000,10.6],[1075593600000,10.2],[1078099200000,10.2],[1080777600000,9.5],[1083369600000,9.9],[1086048000000,11],[1088640000000,8.9],[1091318400000,9.2],[1093996800000,9.6],[1096588800000,9.5],[1099267200000,9.7],[1101859200000,9.5],[1104537600000,9.4],[1107216000000,9.2],[1109635200000,9.3],[1112313600000,9],[1114905600000,9.1],[1117584000000,9],[1120176000000,8.8],[1122854400000,9.2],[1125532800000,8.4],[1128124800000,8.6],[1130803200000,8.5],[1133395200000,8.7],[1136073600000,8.6],[1138752000000,9.1],[1141171200000,8.7],[1143849600000,8.4],[1146441600000,8.5],[1149120000000,7.3],[1151712000000,8],[1154390400000,8.4],[1157068800000,8],[1159660800000,7.9],[1162339200000,8.3],[1164931200000,7.5],[1167609600000,8.3],[1170288000000,8.5],[1172707200000,9.1],[1175385600000,8.6],[1177977600000,8.2],[1180656000000,7.7],[1183248000000,8.7],[1185926400000,8.8],[1188604800000,8.7],[1191196800000,8.4],[1193875200000,8.6],[1196467200000,8.4],[1199145600000,9],[1201824000000,8.7],[1204329600000,8.7],[1207008000000,9.4],[1209600000000,7.9],[1212278400000,9],[1214870400000,9.7],[1217548800000,9.7],[1220227200000,10.2],[1222819200000,10.4],[1225497600000,9.8],[1228089600000,10.5],[1230768000000,10.7],[1233446400000,11.7],[1235865600000,12.3],[1238544000000,13.1],[1241136000000,14.2],[1243814400000,17.2],[1246406400000,16],[1249084800000,16.3],[1251763200000,17.8],[1254355200000,18.9],[1257033600000,19.8],[1259625600000,20.1],[1262304000000,20],[1264982400000,19.9],[1267401600000,20.4],[1270080000000,22.1],[1272672000000,22.3],[1275350400000,25.2],[1277942400000,22.3],[1280620800000,21],[1283299200000,20.3],[1285891200000,21.2],[1288569600000,21],[1291161600000,21.9],[1293840000000,21.5],[1296518400000,21.1],[1298937600000,21.5],[1301616000000,20.9],[1304208000000,21.6],[1306886400000,22.4],[1309478400000,22],[1312156800000,22.4],[1314835200000,22],[1317427200000,20.6],[1320105600000,20.8],[1322697600000,20.5],[1325376000000,20.8],[1328054400000,19.7],[1330560000000,19.2],[1333238400000,19.1],[1335830400000,19.9],[1338508800000,20.4],[1341100800000,17.5],[1343779200000,18.4],[1346457600000,18.8],[1349049600000,19.9],[1351728000000,18.6],[1354320000000,17.7],[1356998400000,15.8],[1359676800000,17.2],[1362096000000,17.6],[1364774400000,17.1],[1367366400000,17.1],[1370044800000,17],[1372636800000,16.2],[1375315200000,16.5],[1377993600000,16.5],[1380585600000,16.3],[1383264000000,17.1],[1385856000000,17.3],[1388534400000,15.4],[1391212800000,15.9],[1393632000000,15.8],[1396310400000,15.7],[1398902400000,14.6],[1401580800000,13.8],[1404172800000,13.1],[1406851200000,12.9],[1409529600000,13.4],[1412121600000,13.6],[1414800000000,13],[1417392000000,12.9],[1420070400000,13.2],[1422748800000,12.9],[1425168000000,12],[1427846400000,11.5]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"annotations\":{\"points\":[{\"x\":\"new Date('1 Jun 2010').getTime()\",\"y\":25.2,\"marker\":{\"size\":8,\"fillColor\":\"#fff\",\"strokeColor\":\"red\",\"radius\":2},\"label\":{\"text\":\"Highest\",\"offsetY\":0,\"borderColor\":\"#FF4560\",\"style\":{\"color\":\"#fff\",\"background\":\"#FF4560\"}}}]}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1998-09-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[\"ax_opts.annotations.points.0.x\"],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_chart.html","id":null,"dir":"Reference","previous_headings":"","what":"Chart parameters — ax_chart","title":"Chart parameters — ax_chart","text":"Chart parameters","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_chart.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Chart parameters — ax_chart","text":"","code":"ax_chart( ax, type = NULL, stacked = NULL, stackType = NULL, defaultLocale = NULL, locales = NULL, animations = NULL, background = NULL, foreColor = NULL, dropShadow = NULL, events = NULL, offsetX = NULL, offsetY = NULL, selection = NULL, sparkline = NULL, toolbar = NULL, zoom = NULL, width = NULL, height = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_chart.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Chart parameters — ax_chart","text":"ax apexchart() htmlwidget object. type Specify chart type. Available Options: \"bar\", \"column\", \"line\", \"pie\", \"donut\", \"radialBar\", \"scatter\", \"bubble\", \"heatmap\". stacked Logical. Enables stacked option axis charts. stackType stacked, stacking percentage based normal stacking. Available options: \"normal\" \"100%\". defaultLocale Locale use : \"ca\", \"cs\", \"de\", \"el\", \"en\", \"es\", \"fi\", \"fr\", \"\", \"hi\", \"hr\", \"hy\", \"id\", \"\", \"ko\", \"lt\", \"nb\", \"nl\", \"pl\", \"pt-br\", \"pt\", \"ru\", \"se\", \"sk\", \"sl\", \"th\", \"tr\", \"ua\". locales Array custom locales parameters. animations list parameters. background Background color chart area. want set background css, use .apexcharts-canvas set . foreColor Sets text color chart. Defaults #373d3f. dropShadow list parameters. See https://apexcharts.com/docs/options/chart/dropshadow/. events See events_opts. offsetX Sets left offset chart. offsetY Sets top offset chart. selection list parameters. sparkline List. Sparkline hides elements charts primary paths. Helps visualize data small areas. . toolbar list parameters. See https://apexcharts.com/docs/options/chart/toolbar/. zoom list parameters. See https://apexcharts.com/docs/options/chart/zoom/. width Width chart. height Height chart. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_chart.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Chart parameters — ax_chart","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_chart.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Chart parameters — ax_chart","text":"","code":"library(apexcharter) data(\"diamonds\", package = \"ggplot2\") ## Stack bar type # default is dodge apex( data = diamonds, mapping = aes(x = cut, fill = color) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"D\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":163},{\"x\":\"Good\",\"y\":662},{\"x\":\"Very Good\",\"y\":1513},{\"x\":\"Premium\",\"y\":1603},{\"x\":\"Ideal\",\"y\":2834}]},{\"name\":\"E\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":224},{\"x\":\"Good\",\"y\":933},{\"x\":\"Very Good\",\"y\":2400},{\"x\":\"Premium\",\"y\":2337},{\"x\":\"Ideal\",\"y\":3903}]},{\"name\":\"F\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":312},{\"x\":\"Good\",\"y\":909},{\"x\":\"Very Good\",\"y\":2164},{\"x\":\"Premium\",\"y\":2331},{\"x\":\"Ideal\",\"y\":3826}]},{\"name\":\"G\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":314},{\"x\":\"Good\",\"y\":871},{\"x\":\"Very Good\",\"y\":2299},{\"x\":\"Premium\",\"y\":2924},{\"x\":\"Ideal\",\"y\":4884}]},{\"name\":\"H\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":303},{\"x\":\"Good\",\"y\":702},{\"x\":\"Very Good\",\"y\":1824},{\"x\":\"Premium\",\"y\":2360},{\"x\":\"Ideal\",\"y\":3115}]},{\"name\":\"I\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":175},{\"x\":\"Good\",\"y\":522},{\"x\":\"Very Good\",\"y\":1204},{\"x\":\"Premium\",\"y\":1428},{\"x\":\"Ideal\",\"y\":2093}]},{\"name\":\"J\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":119},{\"x\":\"Good\",\"y\":307},{\"x\":\"Very Good\",\"y\":678},{\"x\":\"Premium\",\"y\":808},{\"x\":\"Ideal\",\"y\":896}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"Fair\",\"max\":\"Very Good\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # stack apex( data = diamonds, mapping = aes(x = cut, fill = color) ) %>% ax_chart(stacked = TRUE) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\",\"stacked\":true},\"series\":[{\"name\":\"D\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":163},{\"x\":\"Good\",\"y\":662},{\"x\":\"Very Good\",\"y\":1513},{\"x\":\"Premium\",\"y\":1603},{\"x\":\"Ideal\",\"y\":2834}]},{\"name\":\"E\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":224},{\"x\":\"Good\",\"y\":933},{\"x\":\"Very Good\",\"y\":2400},{\"x\":\"Premium\",\"y\":2337},{\"x\":\"Ideal\",\"y\":3903}]},{\"name\":\"F\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":312},{\"x\":\"Good\",\"y\":909},{\"x\":\"Very Good\",\"y\":2164},{\"x\":\"Premium\",\"y\":2331},{\"x\":\"Ideal\",\"y\":3826}]},{\"name\":\"G\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":314},{\"x\":\"Good\",\"y\":871},{\"x\":\"Very Good\",\"y\":2299},{\"x\":\"Premium\",\"y\":2924},{\"x\":\"Ideal\",\"y\":4884}]},{\"name\":\"H\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":303},{\"x\":\"Good\",\"y\":702},{\"x\":\"Very Good\",\"y\":1824},{\"x\":\"Premium\",\"y\":2360},{\"x\":\"Ideal\",\"y\":3115}]},{\"name\":\"I\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":175},{\"x\":\"Good\",\"y\":522},{\"x\":\"Very Good\",\"y\":1204},{\"x\":\"Premium\",\"y\":1428},{\"x\":\"Ideal\",\"y\":2093}]},{\"name\":\"J\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":119},{\"x\":\"Good\",\"y\":307},{\"x\":\"Very Good\",\"y\":678},{\"x\":\"Premium\",\"y\":808},{\"x\":\"Ideal\",\"y\":896}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"Fair\",\"max\":\"Very Good\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # stack filled apex( data = diamonds, mapping = aes(x = cut, fill = color) ) %>% ax_chart(stacked = TRUE, stackType = \"100%\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\",\"stacked\":true,\"stackType\":\"100%\"},\"series\":[{\"name\":\"D\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":163},{\"x\":\"Good\",\"y\":662},{\"x\":\"Very Good\",\"y\":1513},{\"x\":\"Premium\",\"y\":1603},{\"x\":\"Ideal\",\"y\":2834}]},{\"name\":\"E\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":224},{\"x\":\"Good\",\"y\":933},{\"x\":\"Very Good\",\"y\":2400},{\"x\":\"Premium\",\"y\":2337},{\"x\":\"Ideal\",\"y\":3903}]},{\"name\":\"F\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":312},{\"x\":\"Good\",\"y\":909},{\"x\":\"Very Good\",\"y\":2164},{\"x\":\"Premium\",\"y\":2331},{\"x\":\"Ideal\",\"y\":3826}]},{\"name\":\"G\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":314},{\"x\":\"Good\",\"y\":871},{\"x\":\"Very Good\",\"y\":2299},{\"x\":\"Premium\",\"y\":2924},{\"x\":\"Ideal\",\"y\":4884}]},{\"name\":\"H\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":303},{\"x\":\"Good\",\"y\":702},{\"x\":\"Very Good\",\"y\":1824},{\"x\":\"Premium\",\"y\":2360},{\"x\":\"Ideal\",\"y\":3115}]},{\"name\":\"I\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":175},{\"x\":\"Good\",\"y\":522},{\"x\":\"Very Good\",\"y\":1204},{\"x\":\"Premium\",\"y\":1428},{\"x\":\"Ideal\",\"y\":2093}]},{\"name\":\"J\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":119},{\"x\":\"Good\",\"y\":307},{\"x\":\"Very Good\",\"y\":678},{\"x\":\"Premium\",\"y\":808},{\"x\":\"Ideal\",\"y\":896}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"Fair\",\"max\":\"Very Good\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # Toolbar -------------------------------------- # Hide the toolbar apex( data = diamonds, mapping = aes(x = cut, fill = color) ) %>% ax_chart(toolbar = list(show = FALSE)) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\",\"toolbar\":{\"show\":false}},\"series\":[{\"name\":\"D\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":163},{\"x\":\"Good\",\"y\":662},{\"x\":\"Very Good\",\"y\":1513},{\"x\":\"Premium\",\"y\":1603},{\"x\":\"Ideal\",\"y\":2834}]},{\"name\":\"E\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":224},{\"x\":\"Good\",\"y\":933},{\"x\":\"Very Good\",\"y\":2400},{\"x\":\"Premium\",\"y\":2337},{\"x\":\"Ideal\",\"y\":3903}]},{\"name\":\"F\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":312},{\"x\":\"Good\",\"y\":909},{\"x\":\"Very Good\",\"y\":2164},{\"x\":\"Premium\",\"y\":2331},{\"x\":\"Ideal\",\"y\":3826}]},{\"name\":\"G\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":314},{\"x\":\"Good\",\"y\":871},{\"x\":\"Very Good\",\"y\":2299},{\"x\":\"Premium\",\"y\":2924},{\"x\":\"Ideal\",\"y\":4884}]},{\"name\":\"H\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":303},{\"x\":\"Good\",\"y\":702},{\"x\":\"Very Good\",\"y\":1824},{\"x\":\"Premium\",\"y\":2360},{\"x\":\"Ideal\",\"y\":3115}]},{\"name\":\"I\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":175},{\"x\":\"Good\",\"y\":522},{\"x\":\"Very Good\",\"y\":1204},{\"x\":\"Premium\",\"y\":1428},{\"x\":\"Ideal\",\"y\":2093}]},{\"name\":\"J\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":119},{\"x\":\"Good\",\"y\":307},{\"x\":\"Very Good\",\"y\":678},{\"x\":\"Premium\",\"y\":808},{\"x\":\"Ideal\",\"y\":896}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"Fair\",\"max\":\"Very Good\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # Hide download buttons data(\"economics\", package = \"ggplot2\") apex( data = economics, mapping = aes(x = date, y = pce), type = \"line\" ) %>% ax_chart( toolbar = list(tools= list(download = FALSE)) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\",\"toolbar\":{\"tools\":{\"download\":false}}},\"series\":[{\"name\":\"pce\",\"type\":\"line\",\"data\":[[-79056000000,506.7],[-76377600000,509.8],[-73699200000,515.6],[-71107200000,512.2],[-68428800000,517.4],[-65836800000,525.1],[-63158400000,530.9],[-60480000000,533.6],[-57974400000,544.3],[-55296000000,544],[-52704000000,549.8],[-50025600000,556.3],[-47433600000,563.2],[-44755200000,567],[-42076800000,568.2],[-39484800000,571.6],[-36806400000,576.7],[-34214400000,576.5],[-31536000000,583.5],[-28857600000,588.7],[-26438400000,588.9],[-23760000000,593.9],[-21168000000,600.3],[-18489600000,600.9],[-15897600000,602.7],[-13219200000,609.9],[-10540800000,613.2],[-7948800000,618.5],[-5270400000,620.5],[-2678400000,622.8],[0,628.7],[2678400000,634],[5097600000,632.3],[7776000000,636],[10368000000,642.4],[13046400000,646.3],[15638400000,648.5],[18316800000,652.9],[20995200000,659.1],[23587200000,658.3],[26265600000,656.6],[28857600000,665.6],[31536000000,676.1],[34214400000,679.4],[36633600000,682],[39312000000,688.8],[41904000000,691.1],[44582400000,699.8],[47174400000,698.9],[49852800000,704.9],[52531200000,713],[55123200000,715.8],[57801600000,720.9],[60393600000,728.4],[63072000000,731.5],[65750400000,736.2],[68256000000,749.2],[70934400000,752.5],[73526400000,758],[76204800000,761.6],[78796800000,769.9],[81475200000,776.3],[84153600000,781.1],[86745600000,794.9],[89424000000,800.5],[92016000000,806.1],[94694400000,816.5],[97372800000,825.8],[99792000000,832.8],[102470400000,835.7],[105062400000,841.6],[107740800000,844.3],[110332800000,854.1],[113011200000,853.3],[115689600000,869.2],[118281600000,868.2],[120960000000,876.9],[123552000000,876.6],[126230400000,884.5],[128908800000,889.7],[131328000000,901.4],[134006400000,910.8],[136598400000,922.4],[139276800000,928],[141868800000,937.9],[144547200000,954.8],[147225600000,955.1],[149817600000,959.2],[152496000000,956.2],[155088000000,961.8],[157766400000,975.6],[160444800000,989.4],[162864000000,990.6],[165542400000,995],[168134400000,1018.9],[170812800000,1026.8],[173404800000,1039.8],[176083200000,1047],[178761600000,1054.8],[181353600000,1060.9],[184032000000,1075.8],[186624000000,1092.1],[189302400000,1107.1],[191980800000,1107.7],[194486400000,1114.9],[197164800000,1125.4],[199756800000,1122.7],[202435200000,1140.5],[205027200000,1149.6],[207705600000,1158],[210384000000,1168.8],[212976000000,1176.8],[215654400000,1189],[218246400000,1211.5],[220924800000,1215],[223603200000,1231.3],[226022400000,1238.3],[228700800000,1247.3],[231292800000,1257.1],[233971200000,1263.6],[236563200000,1280.5],[239241600000,1285.7],[241920000000,1294.5],[244512000000,1311.4],[247190400000,1327],[249782400000,1336],[252460800000,1329.5],[255139200000,1355.1],[257558400000,1377.5],[260236800000,1396.4],[262828800000,1412],[265507200000,1425.8],[268099200000,1426.8],[270777600000,1447],[273456000000,1452.9],[276048000000,1466.9],[278726400000,1480.6],[281318400000,1496.5],[283996800000,1502.4],[286675200000,1517.8],[289094400000,1531.2],[291772800000,1538.4],[294364800000,1558.8],[297043200000,1575.7],[299635200000,1586.1],[302313600000,1615.6],[304992000000,1633.9],[307584000000,1641.6],[310262400000,1657.3],[312854400000,1666.3],[315532800000,1697.3],[318211200000,1701.4],[320716800000,1708.2],[323395200000,1695.2],[325987200000,1700.1],[328665600000,1718.8],[331257600000,1747.1],[333936000000,1763.8],[336614400000,1780.5],[339206400000,1817.1],[341884800000,1826.8],[344476800000,1851.7],[347155200000,1870],[349833600000,1884.2],[352252800000,1902.9],[354931200000,1904.4],[357523200000,1913.8],[360201600000,1934.5],[362793600000,1942.1],[365472000000,1966.6],[368150400000,1965.5],[370742400000,1963.9],[373420800000,1970.6],[376012800000,1988.8],[378691200000,1997.1],[381369600000,2021.2],[383788800000,2024.1],[386467200000,2026.3],[389059200000,2044.5],[391737600000,2048.1],[394329600000,2072.2],[397008000000,2080.1],[399686400000,2104.6],[402278400000,2125.8],[404956800000,2149.3],[407548800000,2161.6],[410227200000,2174],[412905600000,2177],[415324800000,2202.8],[418003200000,2226.4],[420595200000,2245.9],[423273600000,2276],[425865600000,2304.4],[428544000000,2320.4],[431222400000,2334.9],[433814400000,2357.6],[436492800000,2366.3],[439084800000,2393.6],[441763200000,2419.4],[444441600000,2403.5],[446947200000,2431.6],[449625600000,2457.5],[452217600000,2474.5],[454896000000,2495.6],[457488000000,2494.6],[460166400000,2512.2],[462844800000,2533.8],[465436800000,2531.3],[468115200000,2571.4],[470707200000,2582.6],[473385600000,2618.8],[476064000000,2640.8],[478483200000,2648.5],[481161600000,2659.5],[483753600000,2696.4],[486432000000,2689.4],[489024000000,2715.7],[491702400000,2752.1],[494380800000,2794.7],[496972800000,2755.8],[499651200000,2771.1],[502243200000,2811.3],[504921600000,2827.1],[507600000000,2820.2],[510019200000,2823.6],[512697600000,2835.2],[515289600000,2857.5],[517968000000,2861.7],[520560000000,2881.2],[523238400000,2898.6],[525916800000,2971.8],[528508800000,2932.9],[531187200000,2928.4],[533779200000,2997.1],[536457600000,2935.5],[539136000000,3001.7],[541555200000,3013.3],[544233600000,3038.8],[546825600000,3048.4],[549504000000,3072.8],[552096000000,3094.7],[554774400000,3130.8],[557452800000,3126.5],[560044800000,3134.5],[562723200000,3144.2],[565315200000,3174.1],[567993600000,3213.7],[570672000000,3221.4],[573177600000,3260.5],[575856000000,3263],[578448000000,3293.6],[581126400000,3318.5],[583718400000,3342.7],[586396800000,3368],[589075200000,3375],[591667200000,3413.7],[594345600000,3430.2],[596937600000,3459.7],[599616000000,3483.7],[602294400000,3488],[604713600000,3498.8],[607392000000,3543],[609984000000,3551.8],[612662400000,3566.6],[615254400000,3585.7],[617932800000,3620.6],[620611200000,3621.9],[623203200000,3633.6],[625881600000,3643.3],[628473600000,3684.2],[631152000000,3730.7],[633830400000,3728.2],[636249600000,3754.9],[638928000000,3770],[641520000000,3775.8],[644198400000,3804.5],[646790400000,3821.7],[649468800000,3848.3],[652147200000,3870.1],[654739200000,3870.6],[657417600000,3871.9],[660009600000,3861.3],[662688000000,3841],[665366400000,3866.7],[667785600000,3913],[670464000000,3907.1],[673056000000,3933.2],[675734400000,3940.5],[678326400000,3966],[681004800000,3969.1],[683683200000,3984.7],[686275200000,3976],[688953600000,4003.6],[691545600000,4020.5],[694224000000,4084.7],[696902400000,4099.5],[699408000000,4117],[702086400000,4131.5],[704678400000,4158.4],[707356800000,4177.1],[709948800000,4204.8],[712627200000,4220.9],[715305600000,4255.3],[717897600000,4284.7],[720576000000,4300.5],[723168000000,4336.4],[725846400000,4340.7],[728524800000,4355.3],[730944000000,4352.5],[733622400000,4393.4],[736214400000,4422.4],[738892800000,4440],[741484800000,4468.9],[744163200000,4481.1],[746841600000,4511.5],[749433600000,4532.8],[752112000000,4554.1],[754704000000,4571.1],[757382400000,4585.1],[760060800000,4632.6],[762480000000,4646],[765158400000,4671.1],[767750400000,4669.5],[770428800000,4708.9],[773020800000,4720.6],[775699200000,4762.6],[778377600000,4775],[780969600000,4812.9],[783648000000,4825.6],[786240000000,4841.6],[788918400000,4851.2],[791596800000,4850.8],[794016000000,4885.4],[796694400000,4890.2],[799286400000,4933.1],[801964800000,4977.5],[804556800000,4970.2],[807235200000,5005.3],[809913600000,5020.5],[812505600000,5013.9],[815184000000,5055.6],[817776000000,5097.5],[820454400000,5085.7],[823132800000,5132.8],[825638400000,5173.3],[828316800000,5208],[830908800000,5223.8],[833587200000,5229.8],[836179200000,5251.9],[838857600000,5275],[841536000000,5296.6],[844128000000,5328.5],[846806400000,5351.2],[849398400000,5378.6],[852076800000,5411.1],[854755200000,5434],[857174400000,5454.2],[859852800000,5459.3],[862444800000,5460.2],[865123200000,5494.2],[867715200000,5548.8],[870393600000,5587],[873072000000,5601.7],[875664000000,5637.7],[878342400000,5661.1],[880934400000,5692.1],[883612800000,5689.9],[886291200000,5723.8],[888710400000,5750.3],[891388800000,5788.1],[893980800000,5837.9],[896659200000,5871.7],[899251200000,5890],[901929600000,5925],[904608000000,5965.6],[907200000000,5998.8],[909878400000,6015.4],[912470400000,6070.5],[915148800000,6072.9],[917827200000,6101.8],[920246400000,6132.9],[922924800000,6196.2],[925516800000,6225.7],[928195200000,6254],[930787200000,6281.5],[933465600000,6326.5],[936144000000,6378.8],[938736000000,6402.1],[941414400000,6437.9],[944006400000,6538.7],[946684800000,6535.3],[949363200000,6619.7],[951868800000,6685.8],[954547200000,6671.1],[957139200000,6707.6],[959817600000,6743.9],[962409600000,6764.1],[965088000000,6799.1],[967766400000,6882.9],[970358400000,6888.2],[973036800000,6902.4],[975628800000,6945.7],[978307200000,6977],[980985600000,6995.8],[983404800000,6987.9],[986083200000,7001.2],[988675200000,7047.1],[991353600000,7060.7],[993945600000,7072.2],[996624000000,7108.9],[999302400000,7012.8],[1001894400000,7208.4],[1004572800000,7167.9],[1007164800000,7147.7],[1009843200000,7174.3],[1012521600000,7218.3],[1014940800000,7237.2],[1017619200000,7305.4],[1020211200000,7282.7],[1022889600000,7318.2],[1025481600000,7380.4],[1028160000000,7401.5],[1030838400000,7391],[1033430400000,7430.7],[1036108800000,7459.7],[1038700800000,7512.8],[1041379200000,7533.1],[1044057600000,7535.9],[1046476800000,7598.4],[1049155200000,7621],[1051747200000,7628.1],[1054425600000,7678.6],[1057017600000,7738.2],[1059696000000,7834.5],[1062374400000,7835],[1064966400000,7845.7],[1067644800000,7899.6],[1070236800000,7929.2],[1072915200000,7987.4],[1075593600000,8019.8],[1078099200000,8076],[1080777600000,8088.6],[1083369600000,8163.2],[1086048000000,8147.2],[1088640000000,8218.9],[1091318400000,8253.1],[1093996800000,8321.1],[1096588800000,8374.6],[1099267200000,8420.6],[1101859200000,8481.5],[1104537600000,8470.2],[1107216000000,8529.2],[1109635200000,8569.5],[1112313600000,8645.6],[1114905600000,8643.9],[1117584000000,8724.8],[1120176000000,8829.5],[1122854400000,8832.4],[1125532800000,8885.8],[1128124800000,8926.6],[1130803200000,8938.5],[1133395200000,8969.6],[1136073600000,9059.8],[1138752000000,9090.1],[1141171200000,9122.1],[1143849600000,9174.8],[1146441600000,9215.1],[1149120000000,9240.8],[1151712000000,9322.6],[1154390400000,9321.8],[1157068800000,9354.7],[1159660800000,9373.2],[1162339200000,9380.2],[1164931200000,9469],[1167609600000,9516.3],[1170288000000,9546.8],[1172707200000,9585.1],[1175385600000,9615.7],[1177977600000,9651.3],[1180656000000,9667.3],[1183248000000,9709.6],[1185926400000,9753.9],[1188604800000,9797.9],[1191196800000,9827],[1193875200000,9897.8],[1196467200000,9908.4],[1199145600000,9930],[1201824000000,9913.4],[1204329600000,9959.4],[1207008000000,9996.8],[1209600000000,10053.8],[1212278400000,10107.9],[1214870400000,10104.7],[1217548800000,10094.7],[1220227200000,10043.5],[1222819200000,9960.3],[1225497600000,9820.8],[1228089600000,9730.7],[1230768000000,9783.8],[1233446400000,9766],[1235865600000,9718.5],[1238544000000,9724.8],[1241136000000,9748.9],[1243814400000,9806.9],[1246406400000,9841.7],[1249084800000,9961],[1251763200000,9883.4],[1254355200000,9931.9],[1257033600000,9940.5],[1259625600000,9998.9],[1262304000000,10001.8],[1264982400000,10030.6],[1267401600000,10089.1],[1270080000000,10112.9],[1272672000000,10131],[1275350400000,10151.4],[1277942400000,10184.7],[1280620800000,10228.2],[1283299200000,10249],[1285891200000,10304.7],[1288569600000,10354.7],[1291161600000,10392.1],[1293840000000,10435.5],[1296518400000,10470.1],[1298937600000,10550.5],[1301616000000,10587.6],[1304208000000,10612],[1306886400000,10636.8],[1309478400000,10677.5],[1312156800000,10700.6],[1314835200000,10738.1],[1317427200000,10753.1],[1320105600000,10759.5],[1322697600000,10772.2],[1325376000000,10862.1],[1328054400000,10953.5],[1330560000000,10951.8],[1333238400000,10979.7],[1335830400000,10968.6],[1338508800000,10946.3],[1341100800000,10977.2],[1343779200000,11004.1],[1346457600000,11061.5],[1349049600000,11099.8],[1351728000000,11136.8],[1354320000000,11140.5],[1356998400000,11202.8],[1359676800000,11239.6],[1362096000000,11227.1],[1364774400000,11205.4],[1367366400000,11244.6],[1370044800000,11268.8],[1372636800000,11296.7],[1375315200000,11329.2],[1377993600000,11366.9],[1380585600000,11419.8],[1383264000000,11487.6],[1385856000000,11517.9],[1388534400000,11512.5],[1391212800000,11566.2],[1393632000000,11643],[1396310400000,11702.6],[1398902400000,11748.4],[1401580800000,11817],[1404172800000,11860.5],[1406851200000,11944.3],[1409529600000,11957.4],[1412121600000,12023],[1414800000000,12051.4],[1417392000000,12062],[1420070400000,12046],[1422748800000,12082.4],[1425168000000,12158.3],[1427846400000,12193.8]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]} # Zoom ----------------------------------------- # Disable apex( data = economics, mapping = aes(x = date, y = pce), type = \"line\" ) %>% ax_chart( zoom = list(enabled = FALSE) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\",\"zoom\":{\"enabled\":false}},\"series\":[{\"name\":\"pce\",\"type\":\"line\",\"data\":[[-79056000000,506.7],[-76377600000,509.8],[-73699200000,515.6],[-71107200000,512.2],[-68428800000,517.4],[-65836800000,525.1],[-63158400000,530.9],[-60480000000,533.6],[-57974400000,544.3],[-55296000000,544],[-52704000000,549.8],[-50025600000,556.3],[-47433600000,563.2],[-44755200000,567],[-42076800000,568.2],[-39484800000,571.6],[-36806400000,576.7],[-34214400000,576.5],[-31536000000,583.5],[-28857600000,588.7],[-26438400000,588.9],[-23760000000,593.9],[-21168000000,600.3],[-18489600000,600.9],[-15897600000,602.7],[-13219200000,609.9],[-10540800000,613.2],[-7948800000,618.5],[-5270400000,620.5],[-2678400000,622.8],[0,628.7],[2678400000,634],[5097600000,632.3],[7776000000,636],[10368000000,642.4],[13046400000,646.3],[15638400000,648.5],[18316800000,652.9],[20995200000,659.1],[23587200000,658.3],[26265600000,656.6],[28857600000,665.6],[31536000000,676.1],[34214400000,679.4],[36633600000,682],[39312000000,688.8],[41904000000,691.1],[44582400000,699.8],[47174400000,698.9],[49852800000,704.9],[52531200000,713],[55123200000,715.8],[57801600000,720.9],[60393600000,728.4],[63072000000,731.5],[65750400000,736.2],[68256000000,749.2],[70934400000,752.5],[73526400000,758],[76204800000,761.6],[78796800000,769.9],[81475200000,776.3],[84153600000,781.1],[86745600000,794.9],[89424000000,800.5],[92016000000,806.1],[94694400000,816.5],[97372800000,825.8],[99792000000,832.8],[102470400000,835.7],[105062400000,841.6],[107740800000,844.3],[110332800000,854.1],[113011200000,853.3],[115689600000,869.2],[118281600000,868.2],[120960000000,876.9],[123552000000,876.6],[126230400000,884.5],[128908800000,889.7],[131328000000,901.4],[134006400000,910.8],[136598400000,922.4],[139276800000,928],[141868800000,937.9],[144547200000,954.8],[147225600000,955.1],[149817600000,959.2],[152496000000,956.2],[155088000000,961.8],[157766400000,975.6],[160444800000,989.4],[162864000000,990.6],[165542400000,995],[168134400000,1018.9],[170812800000,1026.8],[173404800000,1039.8],[176083200000,1047],[178761600000,1054.8],[181353600000,1060.9],[184032000000,1075.8],[186624000000,1092.1],[189302400000,1107.1],[191980800000,1107.7],[194486400000,1114.9],[197164800000,1125.4],[199756800000,1122.7],[202435200000,1140.5],[205027200000,1149.6],[207705600000,1158],[210384000000,1168.8],[212976000000,1176.8],[215654400000,1189],[218246400000,1211.5],[220924800000,1215],[223603200000,1231.3],[226022400000,1238.3],[228700800000,1247.3],[231292800000,1257.1],[233971200000,1263.6],[236563200000,1280.5],[239241600000,1285.7],[241920000000,1294.5],[244512000000,1311.4],[247190400000,1327],[249782400000,1336],[252460800000,1329.5],[255139200000,1355.1],[257558400000,1377.5],[260236800000,1396.4],[262828800000,1412],[265507200000,1425.8],[268099200000,1426.8],[270777600000,1447],[273456000000,1452.9],[276048000000,1466.9],[278726400000,1480.6],[281318400000,1496.5],[283996800000,1502.4],[286675200000,1517.8],[289094400000,1531.2],[291772800000,1538.4],[294364800000,1558.8],[297043200000,1575.7],[299635200000,1586.1],[302313600000,1615.6],[304992000000,1633.9],[307584000000,1641.6],[310262400000,1657.3],[312854400000,1666.3],[315532800000,1697.3],[318211200000,1701.4],[320716800000,1708.2],[323395200000,1695.2],[325987200000,1700.1],[328665600000,1718.8],[331257600000,1747.1],[333936000000,1763.8],[336614400000,1780.5],[339206400000,1817.1],[341884800000,1826.8],[344476800000,1851.7],[347155200000,1870],[349833600000,1884.2],[352252800000,1902.9],[354931200000,1904.4],[357523200000,1913.8],[360201600000,1934.5],[362793600000,1942.1],[365472000000,1966.6],[368150400000,1965.5],[370742400000,1963.9],[373420800000,1970.6],[376012800000,1988.8],[378691200000,1997.1],[381369600000,2021.2],[383788800000,2024.1],[386467200000,2026.3],[389059200000,2044.5],[391737600000,2048.1],[394329600000,2072.2],[397008000000,2080.1],[399686400000,2104.6],[402278400000,2125.8],[404956800000,2149.3],[407548800000,2161.6],[410227200000,2174],[412905600000,2177],[415324800000,2202.8],[418003200000,2226.4],[420595200000,2245.9],[423273600000,2276],[425865600000,2304.4],[428544000000,2320.4],[431222400000,2334.9],[433814400000,2357.6],[436492800000,2366.3],[439084800000,2393.6],[441763200000,2419.4],[444441600000,2403.5],[446947200000,2431.6],[449625600000,2457.5],[452217600000,2474.5],[454896000000,2495.6],[457488000000,2494.6],[460166400000,2512.2],[462844800000,2533.8],[465436800000,2531.3],[468115200000,2571.4],[470707200000,2582.6],[473385600000,2618.8],[476064000000,2640.8],[478483200000,2648.5],[481161600000,2659.5],[483753600000,2696.4],[486432000000,2689.4],[489024000000,2715.7],[491702400000,2752.1],[494380800000,2794.7],[496972800000,2755.8],[499651200000,2771.1],[502243200000,2811.3],[504921600000,2827.1],[507600000000,2820.2],[510019200000,2823.6],[512697600000,2835.2],[515289600000,2857.5],[517968000000,2861.7],[520560000000,2881.2],[523238400000,2898.6],[525916800000,2971.8],[528508800000,2932.9],[531187200000,2928.4],[533779200000,2997.1],[536457600000,2935.5],[539136000000,3001.7],[541555200000,3013.3],[544233600000,3038.8],[546825600000,3048.4],[549504000000,3072.8],[552096000000,3094.7],[554774400000,3130.8],[557452800000,3126.5],[560044800000,3134.5],[562723200000,3144.2],[565315200000,3174.1],[567993600000,3213.7],[570672000000,3221.4],[573177600000,3260.5],[575856000000,3263],[578448000000,3293.6],[581126400000,3318.5],[583718400000,3342.7],[586396800000,3368],[589075200000,3375],[591667200000,3413.7],[594345600000,3430.2],[596937600000,3459.7],[599616000000,3483.7],[602294400000,3488],[604713600000,3498.8],[607392000000,3543],[609984000000,3551.8],[612662400000,3566.6],[615254400000,3585.7],[617932800000,3620.6],[620611200000,3621.9],[623203200000,3633.6],[625881600000,3643.3],[628473600000,3684.2],[631152000000,3730.7],[633830400000,3728.2],[636249600000,3754.9],[638928000000,3770],[641520000000,3775.8],[644198400000,3804.5],[646790400000,3821.7],[649468800000,3848.3],[652147200000,3870.1],[654739200000,3870.6],[657417600000,3871.9],[660009600000,3861.3],[662688000000,3841],[665366400000,3866.7],[667785600000,3913],[670464000000,3907.1],[673056000000,3933.2],[675734400000,3940.5],[678326400000,3966],[681004800000,3969.1],[683683200000,3984.7],[686275200000,3976],[688953600000,4003.6],[691545600000,4020.5],[694224000000,4084.7],[696902400000,4099.5],[699408000000,4117],[702086400000,4131.5],[704678400000,4158.4],[707356800000,4177.1],[709948800000,4204.8],[712627200000,4220.9],[715305600000,4255.3],[717897600000,4284.7],[720576000000,4300.5],[723168000000,4336.4],[725846400000,4340.7],[728524800000,4355.3],[730944000000,4352.5],[733622400000,4393.4],[736214400000,4422.4],[738892800000,4440],[741484800000,4468.9],[744163200000,4481.1],[746841600000,4511.5],[749433600000,4532.8],[752112000000,4554.1],[754704000000,4571.1],[757382400000,4585.1],[760060800000,4632.6],[762480000000,4646],[765158400000,4671.1],[767750400000,4669.5],[770428800000,4708.9],[773020800000,4720.6],[775699200000,4762.6],[778377600000,4775],[780969600000,4812.9],[783648000000,4825.6],[786240000000,4841.6],[788918400000,4851.2],[791596800000,4850.8],[794016000000,4885.4],[796694400000,4890.2],[799286400000,4933.1],[801964800000,4977.5],[804556800000,4970.2],[807235200000,5005.3],[809913600000,5020.5],[812505600000,5013.9],[815184000000,5055.6],[817776000000,5097.5],[820454400000,5085.7],[823132800000,5132.8],[825638400000,5173.3],[828316800000,5208],[830908800000,5223.8],[833587200000,5229.8],[836179200000,5251.9],[838857600000,5275],[841536000000,5296.6],[844128000000,5328.5],[846806400000,5351.2],[849398400000,5378.6],[852076800000,5411.1],[854755200000,5434],[857174400000,5454.2],[859852800000,5459.3],[862444800000,5460.2],[865123200000,5494.2],[867715200000,5548.8],[870393600000,5587],[873072000000,5601.7],[875664000000,5637.7],[878342400000,5661.1],[880934400000,5692.1],[883612800000,5689.9],[886291200000,5723.8],[888710400000,5750.3],[891388800000,5788.1],[893980800000,5837.9],[896659200000,5871.7],[899251200000,5890],[901929600000,5925],[904608000000,5965.6],[907200000000,5998.8],[909878400000,6015.4],[912470400000,6070.5],[915148800000,6072.9],[917827200000,6101.8],[920246400000,6132.9],[922924800000,6196.2],[925516800000,6225.7],[928195200000,6254],[930787200000,6281.5],[933465600000,6326.5],[936144000000,6378.8],[938736000000,6402.1],[941414400000,6437.9],[944006400000,6538.7],[946684800000,6535.3],[949363200000,6619.7],[951868800000,6685.8],[954547200000,6671.1],[957139200000,6707.6],[959817600000,6743.9],[962409600000,6764.1],[965088000000,6799.1],[967766400000,6882.9],[970358400000,6888.2],[973036800000,6902.4],[975628800000,6945.7],[978307200000,6977],[980985600000,6995.8],[983404800000,6987.9],[986083200000,7001.2],[988675200000,7047.1],[991353600000,7060.7],[993945600000,7072.2],[996624000000,7108.9],[999302400000,7012.8],[1001894400000,7208.4],[1004572800000,7167.9],[1007164800000,7147.7],[1009843200000,7174.3],[1012521600000,7218.3],[1014940800000,7237.2],[1017619200000,7305.4],[1020211200000,7282.7],[1022889600000,7318.2],[1025481600000,7380.4],[1028160000000,7401.5],[1030838400000,7391],[1033430400000,7430.7],[1036108800000,7459.7],[1038700800000,7512.8],[1041379200000,7533.1],[1044057600000,7535.9],[1046476800000,7598.4],[1049155200000,7621],[1051747200000,7628.1],[1054425600000,7678.6],[1057017600000,7738.2],[1059696000000,7834.5],[1062374400000,7835],[1064966400000,7845.7],[1067644800000,7899.6],[1070236800000,7929.2],[1072915200000,7987.4],[1075593600000,8019.8],[1078099200000,8076],[1080777600000,8088.6],[1083369600000,8163.2],[1086048000000,8147.2],[1088640000000,8218.9],[1091318400000,8253.1],[1093996800000,8321.1],[1096588800000,8374.6],[1099267200000,8420.6],[1101859200000,8481.5],[1104537600000,8470.2],[1107216000000,8529.2],[1109635200000,8569.5],[1112313600000,8645.6],[1114905600000,8643.9],[1117584000000,8724.8],[1120176000000,8829.5],[1122854400000,8832.4],[1125532800000,8885.8],[1128124800000,8926.6],[1130803200000,8938.5],[1133395200000,8969.6],[1136073600000,9059.8],[1138752000000,9090.1],[1141171200000,9122.1],[1143849600000,9174.8],[1146441600000,9215.1],[1149120000000,9240.8],[1151712000000,9322.6],[1154390400000,9321.8],[1157068800000,9354.7],[1159660800000,9373.2],[1162339200000,9380.2],[1164931200000,9469],[1167609600000,9516.3],[1170288000000,9546.8],[1172707200000,9585.1],[1175385600000,9615.7],[1177977600000,9651.3],[1180656000000,9667.3],[1183248000000,9709.6],[1185926400000,9753.9],[1188604800000,9797.9],[1191196800000,9827],[1193875200000,9897.8],[1196467200000,9908.4],[1199145600000,9930],[1201824000000,9913.4],[1204329600000,9959.4],[1207008000000,9996.8],[1209600000000,10053.8],[1212278400000,10107.9],[1214870400000,10104.7],[1217548800000,10094.7],[1220227200000,10043.5],[1222819200000,9960.3],[1225497600000,9820.8],[1228089600000,9730.7],[1230768000000,9783.8],[1233446400000,9766],[1235865600000,9718.5],[1238544000000,9724.8],[1241136000000,9748.9],[1243814400000,9806.9],[1246406400000,9841.7],[1249084800000,9961],[1251763200000,9883.4],[1254355200000,9931.9],[1257033600000,9940.5],[1259625600000,9998.9],[1262304000000,10001.8],[1264982400000,10030.6],[1267401600000,10089.1],[1270080000000,10112.9],[1272672000000,10131],[1275350400000,10151.4],[1277942400000,10184.7],[1280620800000,10228.2],[1283299200000,10249],[1285891200000,10304.7],[1288569600000,10354.7],[1291161600000,10392.1],[1293840000000,10435.5],[1296518400000,10470.1],[1298937600000,10550.5],[1301616000000,10587.6],[1304208000000,10612],[1306886400000,10636.8],[1309478400000,10677.5],[1312156800000,10700.6],[1314835200000,10738.1],[1317427200000,10753.1],[1320105600000,10759.5],[1322697600000,10772.2],[1325376000000,10862.1],[1328054400000,10953.5],[1330560000000,10951.8],[1333238400000,10979.7],[1335830400000,10968.6],[1338508800000,10946.3],[1341100800000,10977.2],[1343779200000,11004.1],[1346457600000,11061.5],[1349049600000,11099.8],[1351728000000,11136.8],[1354320000000,11140.5],[1356998400000,11202.8],[1359676800000,11239.6],[1362096000000,11227.1],[1364774400000,11205.4],[1367366400000,11244.6],[1370044800000,11268.8],[1372636800000,11296.7],[1375315200000,11329.2],[1377993600000,11366.9],[1380585600000,11419.8],[1383264000000,11487.6],[1385856000000,11517.9],[1388534400000,11512.5],[1391212800000,11566.2],[1393632000000,11643],[1396310400000,11702.6],[1398902400000,11748.4],[1401580800000,11817],[1404172800000,11860.5],[1406851200000,11944.3],[1409529600000,11957.4],[1412121600000,12023],[1414800000000,12051.4],[1417392000000,12062],[1420070400000,12046],[1422748800000,12082.4],[1425168000000,12158.3],[1427846400000,12193.8]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]} # Auto-scale Y axis apex( data = economics, mapping = aes(x = date, y = pce), type = \"line\" ) %>% ax_chart( zoom = list(autoScaleYaxis = TRUE) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\",\"zoom\":{\"autoScaleYaxis\":true}},\"series\":[{\"name\":\"pce\",\"type\":\"line\",\"data\":[[-79056000000,506.7],[-76377600000,509.8],[-73699200000,515.6],[-71107200000,512.2],[-68428800000,517.4],[-65836800000,525.1],[-63158400000,530.9],[-60480000000,533.6],[-57974400000,544.3],[-55296000000,544],[-52704000000,549.8],[-50025600000,556.3],[-47433600000,563.2],[-44755200000,567],[-42076800000,568.2],[-39484800000,571.6],[-36806400000,576.7],[-34214400000,576.5],[-31536000000,583.5],[-28857600000,588.7],[-26438400000,588.9],[-23760000000,593.9],[-21168000000,600.3],[-18489600000,600.9],[-15897600000,602.7],[-13219200000,609.9],[-10540800000,613.2],[-7948800000,618.5],[-5270400000,620.5],[-2678400000,622.8],[0,628.7],[2678400000,634],[5097600000,632.3],[7776000000,636],[10368000000,642.4],[13046400000,646.3],[15638400000,648.5],[18316800000,652.9],[20995200000,659.1],[23587200000,658.3],[26265600000,656.6],[28857600000,665.6],[31536000000,676.1],[34214400000,679.4],[36633600000,682],[39312000000,688.8],[41904000000,691.1],[44582400000,699.8],[47174400000,698.9],[49852800000,704.9],[52531200000,713],[55123200000,715.8],[57801600000,720.9],[60393600000,728.4],[63072000000,731.5],[65750400000,736.2],[68256000000,749.2],[70934400000,752.5],[73526400000,758],[76204800000,761.6],[78796800000,769.9],[81475200000,776.3],[84153600000,781.1],[86745600000,794.9],[89424000000,800.5],[92016000000,806.1],[94694400000,816.5],[97372800000,825.8],[99792000000,832.8],[102470400000,835.7],[105062400000,841.6],[107740800000,844.3],[110332800000,854.1],[113011200000,853.3],[115689600000,869.2],[118281600000,868.2],[120960000000,876.9],[123552000000,876.6],[126230400000,884.5],[128908800000,889.7],[131328000000,901.4],[134006400000,910.8],[136598400000,922.4],[139276800000,928],[141868800000,937.9],[144547200000,954.8],[147225600000,955.1],[149817600000,959.2],[152496000000,956.2],[155088000000,961.8],[157766400000,975.6],[160444800000,989.4],[162864000000,990.6],[165542400000,995],[168134400000,1018.9],[170812800000,1026.8],[173404800000,1039.8],[176083200000,1047],[178761600000,1054.8],[181353600000,1060.9],[184032000000,1075.8],[186624000000,1092.1],[189302400000,1107.1],[191980800000,1107.7],[194486400000,1114.9],[197164800000,1125.4],[199756800000,1122.7],[202435200000,1140.5],[205027200000,1149.6],[207705600000,1158],[210384000000,1168.8],[212976000000,1176.8],[215654400000,1189],[218246400000,1211.5],[220924800000,1215],[223603200000,1231.3],[226022400000,1238.3],[228700800000,1247.3],[231292800000,1257.1],[233971200000,1263.6],[236563200000,1280.5],[239241600000,1285.7],[241920000000,1294.5],[244512000000,1311.4],[247190400000,1327],[249782400000,1336],[252460800000,1329.5],[255139200000,1355.1],[257558400000,1377.5],[260236800000,1396.4],[262828800000,1412],[265507200000,1425.8],[268099200000,1426.8],[270777600000,1447],[273456000000,1452.9],[276048000000,1466.9],[278726400000,1480.6],[281318400000,1496.5],[283996800000,1502.4],[286675200000,1517.8],[289094400000,1531.2],[291772800000,1538.4],[294364800000,1558.8],[297043200000,1575.7],[299635200000,1586.1],[302313600000,1615.6],[304992000000,1633.9],[307584000000,1641.6],[310262400000,1657.3],[312854400000,1666.3],[315532800000,1697.3],[318211200000,1701.4],[320716800000,1708.2],[323395200000,1695.2],[325987200000,1700.1],[328665600000,1718.8],[331257600000,1747.1],[333936000000,1763.8],[336614400000,1780.5],[339206400000,1817.1],[341884800000,1826.8],[344476800000,1851.7],[347155200000,1870],[349833600000,1884.2],[352252800000,1902.9],[354931200000,1904.4],[357523200000,1913.8],[360201600000,1934.5],[362793600000,1942.1],[365472000000,1966.6],[368150400000,1965.5],[370742400000,1963.9],[373420800000,1970.6],[376012800000,1988.8],[378691200000,1997.1],[381369600000,2021.2],[383788800000,2024.1],[386467200000,2026.3],[389059200000,2044.5],[391737600000,2048.1],[394329600000,2072.2],[397008000000,2080.1],[399686400000,2104.6],[402278400000,2125.8],[404956800000,2149.3],[407548800000,2161.6],[410227200000,2174],[412905600000,2177],[415324800000,2202.8],[418003200000,2226.4],[420595200000,2245.9],[423273600000,2276],[425865600000,2304.4],[428544000000,2320.4],[431222400000,2334.9],[433814400000,2357.6],[436492800000,2366.3],[439084800000,2393.6],[441763200000,2419.4],[444441600000,2403.5],[446947200000,2431.6],[449625600000,2457.5],[452217600000,2474.5],[454896000000,2495.6],[457488000000,2494.6],[460166400000,2512.2],[462844800000,2533.8],[465436800000,2531.3],[468115200000,2571.4],[470707200000,2582.6],[473385600000,2618.8],[476064000000,2640.8],[478483200000,2648.5],[481161600000,2659.5],[483753600000,2696.4],[486432000000,2689.4],[489024000000,2715.7],[491702400000,2752.1],[494380800000,2794.7],[496972800000,2755.8],[499651200000,2771.1],[502243200000,2811.3],[504921600000,2827.1],[507600000000,2820.2],[510019200000,2823.6],[512697600000,2835.2],[515289600000,2857.5],[517968000000,2861.7],[520560000000,2881.2],[523238400000,2898.6],[525916800000,2971.8],[528508800000,2932.9],[531187200000,2928.4],[533779200000,2997.1],[536457600000,2935.5],[539136000000,3001.7],[541555200000,3013.3],[544233600000,3038.8],[546825600000,3048.4],[549504000000,3072.8],[552096000000,3094.7],[554774400000,3130.8],[557452800000,3126.5],[560044800000,3134.5],[562723200000,3144.2],[565315200000,3174.1],[567993600000,3213.7],[570672000000,3221.4],[573177600000,3260.5],[575856000000,3263],[578448000000,3293.6],[581126400000,3318.5],[583718400000,3342.7],[586396800000,3368],[589075200000,3375],[591667200000,3413.7],[594345600000,3430.2],[596937600000,3459.7],[599616000000,3483.7],[602294400000,3488],[604713600000,3498.8],[607392000000,3543],[609984000000,3551.8],[612662400000,3566.6],[615254400000,3585.7],[617932800000,3620.6],[620611200000,3621.9],[623203200000,3633.6],[625881600000,3643.3],[628473600000,3684.2],[631152000000,3730.7],[633830400000,3728.2],[636249600000,3754.9],[638928000000,3770],[641520000000,3775.8],[644198400000,3804.5],[646790400000,3821.7],[649468800000,3848.3],[652147200000,3870.1],[654739200000,3870.6],[657417600000,3871.9],[660009600000,3861.3],[662688000000,3841],[665366400000,3866.7],[667785600000,3913],[670464000000,3907.1],[673056000000,3933.2],[675734400000,3940.5],[678326400000,3966],[681004800000,3969.1],[683683200000,3984.7],[686275200000,3976],[688953600000,4003.6],[691545600000,4020.5],[694224000000,4084.7],[696902400000,4099.5],[699408000000,4117],[702086400000,4131.5],[704678400000,4158.4],[707356800000,4177.1],[709948800000,4204.8],[712627200000,4220.9],[715305600000,4255.3],[717897600000,4284.7],[720576000000,4300.5],[723168000000,4336.4],[725846400000,4340.7],[728524800000,4355.3],[730944000000,4352.5],[733622400000,4393.4],[736214400000,4422.4],[738892800000,4440],[741484800000,4468.9],[744163200000,4481.1],[746841600000,4511.5],[749433600000,4532.8],[752112000000,4554.1],[754704000000,4571.1],[757382400000,4585.1],[760060800000,4632.6],[762480000000,4646],[765158400000,4671.1],[767750400000,4669.5],[770428800000,4708.9],[773020800000,4720.6],[775699200000,4762.6],[778377600000,4775],[780969600000,4812.9],[783648000000,4825.6],[786240000000,4841.6],[788918400000,4851.2],[791596800000,4850.8],[794016000000,4885.4],[796694400000,4890.2],[799286400000,4933.1],[801964800000,4977.5],[804556800000,4970.2],[807235200000,5005.3],[809913600000,5020.5],[812505600000,5013.9],[815184000000,5055.6],[817776000000,5097.5],[820454400000,5085.7],[823132800000,5132.8],[825638400000,5173.3],[828316800000,5208],[830908800000,5223.8],[833587200000,5229.8],[836179200000,5251.9],[838857600000,5275],[841536000000,5296.6],[844128000000,5328.5],[846806400000,5351.2],[849398400000,5378.6],[852076800000,5411.1],[854755200000,5434],[857174400000,5454.2],[859852800000,5459.3],[862444800000,5460.2],[865123200000,5494.2],[867715200000,5548.8],[870393600000,5587],[873072000000,5601.7],[875664000000,5637.7],[878342400000,5661.1],[880934400000,5692.1],[883612800000,5689.9],[886291200000,5723.8],[888710400000,5750.3],[891388800000,5788.1],[893980800000,5837.9],[896659200000,5871.7],[899251200000,5890],[901929600000,5925],[904608000000,5965.6],[907200000000,5998.8],[909878400000,6015.4],[912470400000,6070.5],[915148800000,6072.9],[917827200000,6101.8],[920246400000,6132.9],[922924800000,6196.2],[925516800000,6225.7],[928195200000,6254],[930787200000,6281.5],[933465600000,6326.5],[936144000000,6378.8],[938736000000,6402.1],[941414400000,6437.9],[944006400000,6538.7],[946684800000,6535.3],[949363200000,6619.7],[951868800000,6685.8],[954547200000,6671.1],[957139200000,6707.6],[959817600000,6743.9],[962409600000,6764.1],[965088000000,6799.1],[967766400000,6882.9],[970358400000,6888.2],[973036800000,6902.4],[975628800000,6945.7],[978307200000,6977],[980985600000,6995.8],[983404800000,6987.9],[986083200000,7001.2],[988675200000,7047.1],[991353600000,7060.7],[993945600000,7072.2],[996624000000,7108.9],[999302400000,7012.8],[1001894400000,7208.4],[1004572800000,7167.9],[1007164800000,7147.7],[1009843200000,7174.3],[1012521600000,7218.3],[1014940800000,7237.2],[1017619200000,7305.4],[1020211200000,7282.7],[1022889600000,7318.2],[1025481600000,7380.4],[1028160000000,7401.5],[1030838400000,7391],[1033430400000,7430.7],[1036108800000,7459.7],[1038700800000,7512.8],[1041379200000,7533.1],[1044057600000,7535.9],[1046476800000,7598.4],[1049155200000,7621],[1051747200000,7628.1],[1054425600000,7678.6],[1057017600000,7738.2],[1059696000000,7834.5],[1062374400000,7835],[1064966400000,7845.7],[1067644800000,7899.6],[1070236800000,7929.2],[1072915200000,7987.4],[1075593600000,8019.8],[1078099200000,8076],[1080777600000,8088.6],[1083369600000,8163.2],[1086048000000,8147.2],[1088640000000,8218.9],[1091318400000,8253.1],[1093996800000,8321.1],[1096588800000,8374.6],[1099267200000,8420.6],[1101859200000,8481.5],[1104537600000,8470.2],[1107216000000,8529.2],[1109635200000,8569.5],[1112313600000,8645.6],[1114905600000,8643.9],[1117584000000,8724.8],[1120176000000,8829.5],[1122854400000,8832.4],[1125532800000,8885.8],[1128124800000,8926.6],[1130803200000,8938.5],[1133395200000,8969.6],[1136073600000,9059.8],[1138752000000,9090.1],[1141171200000,9122.1],[1143849600000,9174.8],[1146441600000,9215.1],[1149120000000,9240.8],[1151712000000,9322.6],[1154390400000,9321.8],[1157068800000,9354.7],[1159660800000,9373.2],[1162339200000,9380.2],[1164931200000,9469],[1167609600000,9516.3],[1170288000000,9546.8],[1172707200000,9585.1],[1175385600000,9615.7],[1177977600000,9651.3],[1180656000000,9667.3],[1183248000000,9709.6],[1185926400000,9753.9],[1188604800000,9797.9],[1191196800000,9827],[1193875200000,9897.8],[1196467200000,9908.4],[1199145600000,9930],[1201824000000,9913.4],[1204329600000,9959.4],[1207008000000,9996.8],[1209600000000,10053.8],[1212278400000,10107.9],[1214870400000,10104.7],[1217548800000,10094.7],[1220227200000,10043.5],[1222819200000,9960.3],[1225497600000,9820.8],[1228089600000,9730.7],[1230768000000,9783.8],[1233446400000,9766],[1235865600000,9718.5],[1238544000000,9724.8],[1241136000000,9748.9],[1243814400000,9806.9],[1246406400000,9841.7],[1249084800000,9961],[1251763200000,9883.4],[1254355200000,9931.9],[1257033600000,9940.5],[1259625600000,9998.9],[1262304000000,10001.8],[1264982400000,10030.6],[1267401600000,10089.1],[1270080000000,10112.9],[1272672000000,10131],[1275350400000,10151.4],[1277942400000,10184.7],[1280620800000,10228.2],[1283299200000,10249],[1285891200000,10304.7],[1288569600000,10354.7],[1291161600000,10392.1],[1293840000000,10435.5],[1296518400000,10470.1],[1298937600000,10550.5],[1301616000000,10587.6],[1304208000000,10612],[1306886400000,10636.8],[1309478400000,10677.5],[1312156800000,10700.6],[1314835200000,10738.1],[1317427200000,10753.1],[1320105600000,10759.5],[1322697600000,10772.2],[1325376000000,10862.1],[1328054400000,10953.5],[1330560000000,10951.8],[1333238400000,10979.7],[1335830400000,10968.6],[1338508800000,10946.3],[1341100800000,10977.2],[1343779200000,11004.1],[1346457600000,11061.5],[1349049600000,11099.8],[1351728000000,11136.8],[1354320000000,11140.5],[1356998400000,11202.8],[1359676800000,11239.6],[1362096000000,11227.1],[1364774400000,11205.4],[1367366400000,11244.6],[1370044800000,11268.8],[1372636800000,11296.7],[1375315200000,11329.2],[1377993600000,11366.9],[1380585600000,11419.8],[1383264000000,11487.6],[1385856000000,11517.9],[1388534400000,11512.5],[1391212800000,11566.2],[1393632000000,11643],[1396310400000,11702.6],[1398902400000,11748.4],[1401580800000,11817],[1404172800000,11860.5],[1406851200000,11944.3],[1409529600000,11957.4],[1412121600000,12023],[1414800000000,12051.4],[1417392000000,12062],[1420070400000,12046],[1422748800000,12082.4],[1425168000000,12158.3],[1427846400000,12193.8]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]} # Localization --------------------------------- # Use included localization config dat <- data.frame( x = Sys.Date() + 1:20, y = sample.int(20, 20) ) # French apex(dat, aes(x, y), \"line\") %>% ax_chart(defaultLocale = \"fr\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\",\"defaultLocale\":\"fr\",\"locales\":[{\"name\":\"fr\",\"options\":{\"months\":[\"janvier\",\"février\",\"mars\",\"avril\",\"mai\",\"juin\",\"juillet\",\"août\",\"septembre\",\"octobre\",\"novembre\",\"décembre\"],\"shortMonths\":[\"janv.\",\"févr.\",\"mars\",\"avr.\",\"mai\",\"juin\",\"juill.\",\"août\",\"sept.\",\"oct.\",\"nov.\",\"déc.\"],\"days\":[\"dimanche\",\"lundi\",\"mardi\",\"mercredi\",\"jeudi\",\"vendredi\",\"samedi\"],\"shortDays\":[\"dim.\",\"lun.\",\"mar.\",\"mer.\",\"jeu.\",\"ven.\",\"sam.\"],\"toolbar\":{\"exportToSVG\":\"Télécharger au format SVG\",\"exportToPNG\":\"Télécharger au format PNG\",\"exportToCSV\":\"Télécharger au format CSV\",\"menu\":\"Menu\",\"selection\":\"Sélection\",\"selectionZoom\":\"Sélection et zoom\",\"zoomIn\":\"Zoomer\",\"zoomOut\":\"Dézoomer\",\"pan\":\"Navigation\",\"reset\":\"Réinitialiser le zoom\"}}}]},\"series\":[{\"name\":\"y\",\"type\":\"line\",\"data\":[[1639267200000,20],[1639353600000,16],[1639440000000,1],[1639526400000,11],[1639612800000,8],[1639699200000,14],[1639785600000,7],[1639872000000,19],[1639958400000,17],[1640044800000,9],[1640131200000,3],[1640217600000,5],[1640304000000,13],[1640390400000,6],[1640476800000,10],[1640563200000,4],[1640649600000,12],[1640736000000,2],[1640822400000,15],[1640908800000,18]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2021-12-12\",\"max\":\"2021-12-31\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]} # Italian apex(dat, aes(x, y), \"line\") %>% ax_chart(defaultLocale = \"it\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\",\"defaultLocale\":\"it\",\"locales\":[{\"name\":\"it\",\"options\":{\"months\":[\"Gennaio\",\"Febbraio\",\"Marzo\",\"Aprile\",\"Maggio\",\"Giugno\",\"Luglio\",\"Agosto\",\"Settembre\",\"Ottobre\",\"Novembre\",\"Dicembre\"],\"shortMonths\":[\"Gen\",\"Feb\",\"Mar\",\"Apr\",\"Mag\",\"Giu\",\"Lug\",\"Ago\",\"Set\",\"Ott\",\"Nov\",\"Dic\"],\"days\":[\"Domenica\",\"Lunedì\",\"Martedì\",\"Mercoledì\",\"Giovedì\",\"Venerdì\",\"Sabato\"],\"shortDays\":[\"Dom\",\"Lun\",\"Mar\",\"Mer\",\"Gio\",\"Ven\",\"Sab\"],\"toolbar\":{\"exportToSVG\":\"Scarica SVG\",\"exportToPNG\":\"Scarica PNG\",\"exportToCSV\":\"Scarica CSV\",\"menu\":\"Menu\",\"selection\":\"Selezione\",\"selectionZoom\":\"Seleziona Zoom\",\"zoomIn\":\"Zoom In\",\"zoomOut\":\"Zoom Out\",\"pan\":\"Sposta\",\"reset\":\"Reimposta Zoom\"}}}]},\"series\":[{\"name\":\"y\",\"type\":\"line\",\"data\":[[1639267200000,20],[1639353600000,16],[1639440000000,1],[1639526400000,11],[1639612800000,8],[1639699200000,14],[1639785600000,7],[1639872000000,19],[1639958400000,17],[1640044800000,9],[1640131200000,3],[1640217600000,5],[1640304000000,13],[1640390400000,6],[1640476800000,10],[1640563200000,4],[1640649600000,12],[1640736000000,2],[1640822400000,15],[1640908800000,18]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2021-12-12\",\"max\":\"2021-12-31\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]} # Custom config apex(dat, aes(x, y), \"line\") %>% ax_chart(locales = list( list( name = \"en\", # override 'en' locale options = list( toolbar = list( exportToSVG = \"GET SVG\", exportToPNG = \"GET PNG\" ) ) ) )) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\",\"locales\":[{\"name\":\"en\",\"options\":{\"toolbar\":{\"exportToSVG\":\"GET SVG\",\"exportToPNG\":\"GET PNG\"}}}]},\"series\":[{\"name\":\"y\",\"type\":\"line\",\"data\":[[1639267200000,20],[1639353600000,16],[1639440000000,1],[1639526400000,11],[1639612800000,8],[1639699200000,14],[1639785600000,7],[1639872000000,19],[1639958400000,17],[1640044800000,9],[1640131200000,3],[1640217600000,5],[1640304000000,13],[1640390400000,6],[1640476800000,10],[1640563200000,4],[1640649600000,12],[1640736000000,2],[1640822400000,15],[1640908800000,18]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2021-12-12\",\"max\":\"2021-12-31\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_colors.html","id":null,"dir":"Reference","previous_headings":"","what":"Colors — ax_colors","title":"Colors — ax_colors","text":"Colors","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_colors.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Colors — ax_colors","text":"","code":"ax_colors(ax, ...)"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_colors.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Colors — ax_colors","text":"ax apexchart() htmlwidget object. ... Colors chart's series. colors used, starts beginning.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_colors.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Colors — ax_colors","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_colors.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Colors — ax_colors","text":"See https://apexcharts.com/docs/options/colors/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_colors.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Colors — ax_colors","text":"","code":"data(\"diamonds\", package = \"ggplot2\") # Change default color(s) apex( data = diamonds, mapping = aes(x = cut) ) %>% ax_colors(\"#F7D358\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":[],\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":1610},{\"x\":\"Good\",\"y\":4906},{\"x\":\"Very Good\",\"y\":12082},{\"x\":\"Premium\",\"y\":13791},{\"x\":\"Ideal\",\"y\":21551}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"colors\":[\"#F7D358\"]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"Fair\",\"max\":\"Very Good\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} library(scales) apex( data = diamonds, mapping = aes(x = cut, fill = color) ) %>% ax_colors(brewer_pal(palette = \"Set2\")(7)) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"D\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":163},{\"x\":\"Good\",\"y\":662},{\"x\":\"Very Good\",\"y\":1513},{\"x\":\"Premium\",\"y\":1603},{\"x\":\"Ideal\",\"y\":2834}]},{\"name\":\"E\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":224},{\"x\":\"Good\",\"y\":933},{\"x\":\"Very Good\",\"y\":2400},{\"x\":\"Premium\",\"y\":2337},{\"x\":\"Ideal\",\"y\":3903}]},{\"name\":\"F\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":312},{\"x\":\"Good\",\"y\":909},{\"x\":\"Very Good\",\"y\":2164},{\"x\":\"Premium\",\"y\":2331},{\"x\":\"Ideal\",\"y\":3826}]},{\"name\":\"G\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":314},{\"x\":\"Good\",\"y\":871},{\"x\":\"Very Good\",\"y\":2299},{\"x\":\"Premium\",\"y\":2924},{\"x\":\"Ideal\",\"y\":4884}]},{\"name\":\"H\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":303},{\"x\":\"Good\",\"y\":702},{\"x\":\"Very Good\",\"y\":1824},{\"x\":\"Premium\",\"y\":2360},{\"x\":\"Ideal\",\"y\":3115}]},{\"name\":\"I\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":175},{\"x\":\"Good\",\"y\":522},{\"x\":\"Very Good\",\"y\":1204},{\"x\":\"Premium\",\"y\":1428},{\"x\":\"Ideal\",\"y\":2093}]},{\"name\":\"J\",\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":119},{\"x\":\"Good\",\"y\":307},{\"x\":\"Very Good\",\"y\":678},{\"x\":\"Premium\",\"y\":808},{\"x\":\"Ideal\",\"y\":896}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"colors\":[\"#66C2A5\",\"#FC8D62\",\"#8DA0CB\",\"#E78AC3\",\"#A6D854\",\"#FFD92F\",\"#E5C494\"]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"Fair\",\"max\":\"Very Good\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_colors_manual.html","id":null,"dir":"Reference","previous_headings":"","what":"Set specific color's series — ax_colors_manual","title":"Set specific color's series — ax_colors_manual","text":"Set specific color's series","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_colors_manual.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Set specific color's series — ax_colors_manual","text":"","code":"ax_colors_manual(ax, values)"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_colors_manual.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Set specific color's series — ax_colors_manual","text":"ax apexchart() htmlwidget object. values Named list, names represent data series, values colors use.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_colors_manual.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Set specific color's series — ax_colors_manual","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_colors_manual.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Set specific color's series — ax_colors_manual","text":"","code":"## scatter apex( data = mtcars, type = \"scatter\", mapping = aes(x = wt, y = mpg, fill = cyl) ) %>% ax_colors_manual(list( \"4\" = \"steelblue\", \"6\" = \"firebrick\", \"8\" = \"forestgreen\" )) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"scatter\"},\"series\":[{\"name\":\"6\",\"type\":\"scatter\",\"data\":[{\"x\":2.62,\"y\":21},{\"x\":2.875,\"y\":21},{\"x\":3.215,\"y\":21.4},{\"x\":3.44,\"y\":19.2},{\"x\":3.44,\"y\":17.8},{\"x\":3.46,\"y\":18.1},{\"x\":2.77,\"y\":19.7}]},{\"name\":\"4\",\"type\":\"scatter\",\"data\":[{\"x\":2.32,\"y\":22.8},{\"x\":3.19,\"y\":24.4},{\"x\":3.15,\"y\":22.8},{\"x\":2.2,\"y\":32.4},{\"x\":1.615,\"y\":30.4},{\"x\":1.835,\"y\":33.9},{\"x\":2.465,\"y\":21.5},{\"x\":1.935,\"y\":27.3},{\"x\":2.14,\"y\":26},{\"x\":1.513,\"y\":30.4},{\"x\":2.78,\"y\":21.4}]},{\"name\":\"8\",\"type\":\"scatter\",\"data\":[{\"x\":3.44,\"y\":18.7},{\"x\":3.57,\"y\":14.3},{\"x\":3.57,\"y\":15},{\"x\":4.07,\"y\":16.4},{\"x\":3.73,\"y\":17.3},{\"x\":3.78,\"y\":15.2},{\"x\":5.25,\"y\":10.4},{\"x\":5.424,\"y\":10.4},{\"x\":5.345,\"y\":14.7},{\"x\":3.52,\"y\":15.5},{\"x\":3.435,\"y\":15.2},{\"x\":3.84,\"y\":13.3},{\"x\":3.845,\"y\":19.2},{\"x\":3.17,\"y\":15.8}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":1,\"max\":6,\"tickAmount\":5,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":10,\"max\":35,\"tickAmount\":5,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"colors\":[\"firebrick\",\"steelblue\",\"forestgreen\"]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":1.513,\"max\":5.424},\"type\":\"scatter\",\"colors_manual\":{\"4\":\"steelblue\",\"6\":\"firebrick\",\"8\":\"forestgreen\"}},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} # If missing level, colors are recycled apex( data = mtcars, type = \"scatter\", mapping = aes(x = wt, y = mpg, fill = cyl) ) %>% ax_colors_manual(list( \"4\" = \"steelblue\", \"8\" = \"forestgreen\" )) #> Warning: Some groups doesn't have a corresponding color value {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"scatter\"},\"series\":[{\"name\":\"6\",\"type\":\"scatter\",\"data\":[{\"x\":2.62,\"y\":21},{\"x\":2.875,\"y\":21},{\"x\":3.215,\"y\":21.4},{\"x\":3.44,\"y\":19.2},{\"x\":3.44,\"y\":17.8},{\"x\":3.46,\"y\":18.1},{\"x\":2.77,\"y\":19.7}]},{\"name\":\"4\",\"type\":\"scatter\",\"data\":[{\"x\":2.32,\"y\":22.8},{\"x\":3.19,\"y\":24.4},{\"x\":3.15,\"y\":22.8},{\"x\":2.2,\"y\":32.4},{\"x\":1.615,\"y\":30.4},{\"x\":1.835,\"y\":33.9},{\"x\":2.465,\"y\":21.5},{\"x\":1.935,\"y\":27.3},{\"x\":2.14,\"y\":26},{\"x\":1.513,\"y\":30.4},{\"x\":2.78,\"y\":21.4}]},{\"name\":\"8\",\"type\":\"scatter\",\"data\":[{\"x\":3.44,\"y\":18.7},{\"x\":3.57,\"y\":14.3},{\"x\":3.57,\"y\":15},{\"x\":4.07,\"y\":16.4},{\"x\":3.73,\"y\":17.3},{\"x\":3.78,\"y\":15.2},{\"x\":5.25,\"y\":10.4},{\"x\":5.424,\"y\":10.4},{\"x\":5.345,\"y\":14.7},{\"x\":3.52,\"y\":15.5},{\"x\":3.435,\"y\":15.2},{\"x\":3.84,\"y\":13.3},{\"x\":3.845,\"y\":19.2},{\"x\":3.17,\"y\":15.8}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":1,\"max\":6,\"tickAmount\":5,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":10,\"max\":35,\"tickAmount\":5,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"colors\":[\"steelblue\",\"forestgreen\"]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":1.513,\"max\":5.424},\"type\":\"scatter\",\"colors_manual\":{\"4\":\"steelblue\",\"8\":\"forestgreen\"}},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} # Ignore levels not present in data apex( data = mtcars, type = \"scatter\", mapping = aes(x = wt, y = mpg, fill = cyl) ) %>% ax_colors_manual(list( \"4\" = \"steelblue\", \"6\" = \"firebrick\", \"8\" = \"forestgreen\", \"99\" = \"yellow\" )) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"scatter\"},\"series\":[{\"name\":\"6\",\"type\":\"scatter\",\"data\":[{\"x\":2.62,\"y\":21},{\"x\":2.875,\"y\":21},{\"x\":3.215,\"y\":21.4},{\"x\":3.44,\"y\":19.2},{\"x\":3.44,\"y\":17.8},{\"x\":3.46,\"y\":18.1},{\"x\":2.77,\"y\":19.7}]},{\"name\":\"4\",\"type\":\"scatter\",\"data\":[{\"x\":2.32,\"y\":22.8},{\"x\":3.19,\"y\":24.4},{\"x\":3.15,\"y\":22.8},{\"x\":2.2,\"y\":32.4},{\"x\":1.615,\"y\":30.4},{\"x\":1.835,\"y\":33.9},{\"x\":2.465,\"y\":21.5},{\"x\":1.935,\"y\":27.3},{\"x\":2.14,\"y\":26},{\"x\":1.513,\"y\":30.4},{\"x\":2.78,\"y\":21.4}]},{\"name\":\"8\",\"type\":\"scatter\",\"data\":[{\"x\":3.44,\"y\":18.7},{\"x\":3.57,\"y\":14.3},{\"x\":3.57,\"y\":15},{\"x\":4.07,\"y\":16.4},{\"x\":3.73,\"y\":17.3},{\"x\":3.78,\"y\":15.2},{\"x\":5.25,\"y\":10.4},{\"x\":5.424,\"y\":10.4},{\"x\":5.345,\"y\":14.7},{\"x\":3.52,\"y\":15.5},{\"x\":3.435,\"y\":15.2},{\"x\":3.84,\"y\":13.3},{\"x\":3.845,\"y\":19.2},{\"x\":3.17,\"y\":15.8}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":1,\"max\":6,\"tickAmount\":5,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":10,\"max\":35,\"tickAmount\":5,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"colors\":[\"firebrick\",\"steelblue\",\"forestgreen\"]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":1.513,\"max\":5.424},\"type\":\"scatter\",\"colors_manual\":{\"4\":\"steelblue\",\"6\":\"firebrick\",\"8\":\"forestgreen\",\"99\":\"yellow\"}},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} ## Bar tab <- table(sample(letters[1:5], 100, TRUE), sample(LETTERS[1:5], 100, TRUE)) dat <- as.data.frame(tab) apex( data = dat, type = \"column\", mapping = aes(x = Var1, y = Freq, group = Var2) ) %>% ax_colors_manual(list( A = \"steelblue\", C = \"firebrick\", D = \"forestgreen\", B = \"peachpuff\", E = \"chartreuse\" )) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"A\",\"type\":\"bar\",\"data\":[{\"x\":\"a\",\"y\":5},{\"x\":\"b\",\"y\":2},{\"x\":\"c\",\"y\":4},{\"x\":\"d\",\"y\":3},{\"x\":\"e\",\"y\":0}]},{\"name\":\"B\",\"type\":\"bar\",\"data\":[{\"x\":\"a\",\"y\":3},{\"x\":\"b\",\"y\":2},{\"x\":\"c\",\"y\":4},{\"x\":\"d\",\"y\":3},{\"x\":\"e\",\"y\":5}]},{\"name\":\"C\",\"type\":\"bar\",\"data\":[{\"x\":\"a\",\"y\":4},{\"x\":\"b\",\"y\":3},{\"x\":\"c\",\"y\":5},{\"x\":\"d\",\"y\":8},{\"x\":\"e\",\"y\":6}]},{\"name\":\"D\",\"type\":\"bar\",\"data\":[{\"x\":\"a\",\"y\":3},{\"x\":\"b\",\"y\":1},{\"x\":\"c\",\"y\":7},{\"x\":\"d\",\"y\":3},{\"x\":\"e\",\"y\":5}]},{\"name\":\"E\",\"type\":\"bar\",\"data\":[{\"x\":\"a\",\"y\":5},{\"x\":\"b\",\"y\":7},{\"x\":\"c\",\"y\":7},{\"x\":\"d\",\"y\":3},{\"x\":\"e\",\"y\":2}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"colors\":[\"steelblue\",\"peachpuff\",\"firebrick\",\"forestgreen\",\"chartreuse\"]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"type\":\"column\",\"colors_manual\":{\"A\":\"steelblue\",\"C\":\"firebrick\",\"D\":\"forestgreen\",\"B\":\"peachpuff\",\"E\":\"chartreuse\"}},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_dataLabels.html","id":null,"dir":"Reference","previous_headings":"","what":"Labels on data — ax_dataLabels","title":"Labels on data — ax_dataLabels","text":"Labels data","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_dataLabels.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Labels on data — ax_dataLabels","text":"","code":"ax_dataLabels( ax, enabled = NULL, textAnchor = NULL, offsetX = NULL, offsetY = NULL, style = NULL, dropShadow = NULL, formatter = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_dataLabels.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Labels on data — ax_dataLabels","text":"ax apexchart() htmlwidget object. enabled determine whether show dataLabels . textAnchor alignment text relative dataLabel's drawing position. Accepted values \"start\", \"middle\" \"end\". offsetX Sets left offset dataLabels. offsetY Sets top offset dataLabels. style list parameters. dropShadow list parameters. formatter formatter function takes single value allows format value displaying ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_dataLabels.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Labels on data — ax_dataLabels","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_dataLabels.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Labels on data — ax_dataLabels","text":"See https://apexcharts.com/docs/options/datalabels/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_dataLabels.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Labels on data — ax_dataLabels","text":"","code":"data(\"diamonds\", package = \"ggplot2\") # Add data labels apex( data = diamonds, mapping = aes(x = cut) ) %>% ax_dataLabels(enabled = TRUE) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":[],\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":1610},{\"x\":\"Good\",\"y\":4906},{\"x\":\"Very Good\",\"y\":12082},{\"x\":\"Premium\",\"y\":13791},{\"x\":\"Ideal\",\"y\":21551}]}],\"dataLabels\":{\"enabled\":true},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"Fair\",\"max\":\"Very Good\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_fill.html","id":null,"dir":"Reference","previous_headings":"","what":"Fill property — ax_fill","title":"Fill property — ax_fill","text":"Fill property","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_fill.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Fill property — ax_fill","text":"","code":"ax_fill( ax, type = NULL, colors = NULL, opacity = NULL, gradient = NULL, image = NULL, pattern = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_fill.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Fill property — ax_fill","text":"ax apexchart() htmlwidget object. type Whether fill paths solid colors gradient. Available options: \"solid\", \"gradient\", \"pattern\" \"image\". colors Colors fill svg paths.. opacity Opacity fill attribute. gradient list parameters. image list parameters. pattern list parameters. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_fill.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Fill property — ax_fill","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_fill.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Fill property — ax_fill","text":"See https://apexcharts.com/docs/options/fill/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_fill.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Fill property — ax_fill","text":"","code":"data(\"diamonds\", package = \"ggplot2\") # Use a pattern to fill bars apex( data = diamonds, mapping = aes(x = color, fill = cut) ) %>% ax_fill( type = \"pattern\", opacity = 1, pattern = list( style = c(\"circles\", \"slantedLines\", \"verticalLines\", \"horizontalLines\", \"squares\") ) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"Fair\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":163},{\"x\":\"E\",\"y\":224},{\"x\":\"F\",\"y\":312},{\"x\":\"G\",\"y\":314},{\"x\":\"H\",\"y\":303},{\"x\":\"I\",\"y\":175},{\"x\":\"J\",\"y\":119}]},{\"name\":\"Good\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":662},{\"x\":\"E\",\"y\":933},{\"x\":\"F\",\"y\":909},{\"x\":\"G\",\"y\":871},{\"x\":\"H\",\"y\":702},{\"x\":\"I\",\"y\":522},{\"x\":\"J\",\"y\":307}]},{\"name\":\"Very Good\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":1513},{\"x\":\"E\",\"y\":2400},{\"x\":\"F\",\"y\":2164},{\"x\":\"G\",\"y\":2299},{\"x\":\"H\",\"y\":1824},{\"x\":\"I\",\"y\":1204},{\"x\":\"J\",\"y\":678}]},{\"name\":\"Premium\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":1603},{\"x\":\"E\",\"y\":2337},{\"x\":\"F\",\"y\":2331},{\"x\":\"G\",\"y\":2924},{\"x\":\"H\",\"y\":2360},{\"x\":\"I\",\"y\":1428},{\"x\":\"J\",\"y\":808}]},{\"name\":\"Ideal\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":2834},{\"x\":\"E\",\"y\":3903},{\"x\":\"F\",\"y\":3826},{\"x\":\"G\",\"y\":4884},{\"x\":\"H\",\"y\":3115},{\"x\":\"I\",\"y\":2093},{\"x\":\"J\",\"y\":896}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"fill\":{\"type\":\"pattern\",\"opacity\":1,\"pattern\":{\"style\":[\"circles\",\"slantedLines\",\"verticalLines\",\"horizontalLines\",\"squares\"]}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"D\",\"max\":\"J\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} data(\"economics\", package = \"ggplot2\") # Customise gradient apex( data = economics, mapping = aes(x = date, y = psavert), type = \"area\" ) %>% ax_fill(gradient = list( enabled = TRUE, shadeIntensity = 1, inverseColors = FALSE, opacityFrom = 0, opacityTo = 1, stops = c(0, 2000) )) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"area\"},\"series\":[{\"name\":\"psavert\",\"type\":\"area\",\"data\":[[-79056000000,12.6],[-76377600000,12.6],[-73699200000,11.9],[-71107200000,12.9],[-68428800000,12.8],[-65836800000,11.8],[-63158400000,11.7],[-60480000000,12.3],[-57974400000,11.7],[-55296000000,12.3],[-52704000000,12],[-50025600000,11.7],[-47433600000,10.7],[-44755200000,10.5],[-42076800000,10.6],[-39484800000,10.8],[-36806400000,10.6],[-34214400000,11.1],[-31536000000,10.3],[-28857600000,9.7],[-26438400000,10.2],[-23760000000,9.7],[-21168000000,10.1],[-18489600000,11.1],[-15897600000,11.8],[-13219200000,11.5],[-10540800000,11.6],[-7948800000,11.4],[-5270400000,11.6],[-2678400000,11.8],[0,11.8],[2678400000,11.7],[5097600000,12.4],[7776000000,13.3],[10368000000,12.4],[13046400000,12.3],[15638400000,13.5],[18316800000,13.4],[20995200000,12.9],[23587200000,13.1],[26265600000,13.6],[28857600000,13.2],[31536000000,13.3],[34214400000,13.3],[36633600000,13.5],[39312000000,13.2],[41904000000,13.6],[44582400000,14.7],[47174400000,13.8],[49852800000,13.6],[52531200000,13.3],[55123200000,13.3],[57801600000,13.1],[60393600000,13],[63072000000,12.5],[65750400000,12.8],[68256000000,11.8],[70934400000,11.5],[73526400000,11.7],[76204800000,11.7],[78796800000,11.7],[81475200000,12],[84153600000,12.2],[86745600000,13],[89424000000,13.6],[92016000000,13.7],[94694400000,12.4],[97372800000,12.5],[99792000000,12.7],[102470400000,13.2],[105062400000,13.2],[107740800000,13.6],[110332800000,13.2],[113011200000,13.9],[115689600000,13.1],[118281600000,14.4],[120960000000,14.4],[123552000000,14.8],[126230400000,14.3],[128908800000,14.2],[131328000000,13.4],[134006400000,13.1],[136598400000,12.8],[139276800000,12.8],[141868800000,12.8],[144547200000,12.1],[147225600000,12.9],[149817600000,13.4],[152496000000,13.8],[155088000000,14],[157766400000,13.2],[160444800000,12.5],[162864000000,12.7],[165542400000,14.2],[168134400000,17.3],[170812800000,14.3],[173404800000,12.6],[176083200000,13],[178761600000,13],[181353600000,13.4],[184032000000,12.7],[186624000000,12],[189302400000,11.7],[191980800000,12.3],[194486400000,12.2],[197164800000,11.7],[199756800000,12.3],[202435200000,11.4],[205027200000,11.7],[207705600000,11.7],[210384000000,11.4],[212976000000,11.1],[215654400000,11.4],[218246400000,10.6],[220924800000,10.6],[223603200000,9.3],[226022400000,10.5],[228700800000,10.5],[231292800000,10.3],[233971200000,10.6],[236563200000,10.5],[239241600000,10.9],[241920000000,11.1],[244512000000,11],[247190400000,11.2],[249782400000,11.4],[252460800000,11.9],[255139200000,11.1],[257558400000,11],[260236800000,10.8],[262828800000,10.3],[265507200000,10],[268099200000,10.9],[270777600000,10.5],[273456000000,10.6],[276048000000,10.7],[278726400000,10.5],[281318400000,10.4],[283996800000,11.1],[286675200000,11.1],[289094400000,11.2],[291772800000,11],[294364800000,10.3],[297043200000,9.9],[299635200000,10.6],[302313600000,9.7],[304992000000,9.4],[307584000000,9.7],[310262400000,9.7],[312854400000,10.1],[315532800000,9.9],[318211200000,10.1],[320716800000,10.2],[323395200000,11.3],[325987200000,11.4],[328665600000,11.2],[331257600000,11.3],[333936000000,11.3],[336614400000,11.7],[339206400000,11.3],[341884800000,11.6],[344476800000,11.4],[347155200000,10.9],[349833600000,10.8],[352252800000,10.8],[354931200000,10.9],[357523200000,11],[360201600000,10.8],[362793600000,12.3],[365472000000,12],[368150400000,12.4],[370742400000,13],[373420800000,13.2],[376012800000,12.5],[378691200000,12.7],[381369600000,12.1],[383788800000,12.2],[386467200000,12.9],[389059200000,12.3],[391737600000,12.3],[394329600000,12.5],[397008000000,12.6],[399686400000,11.8],[402278400000,11.3],[404956800000,10.9],[407548800000,10.9],[410227200000,11.1],[412905600000,11.1],[415324800000,10.6],[418003200000,10.3],[420595200000,9.9],[423273600000,9.1],[425865600000,9.6],[428544000000,9.2],[431222400000,9.6],[433814400000,9.7],[436492800000,10.3],[439084800000,10.1],[441763200000,10],[444441600000,11.7],[446947200000,11.5],[449625600000,11.5],[452217600000,11.1],[454896000000,11.1],[457488000000,11.6],[460166400000,11.8],[462844800000,11.8],[465436800000,11.7],[468115200000,10.9],[470707200000,11.2],[473385600000,10.3],[476064000000,9.1],[478483200000,8.7],[481161600000,9.9],[483753600000,11.1],[486432000000,9.6],[489024000000,9.1],[491702400000,8.2],[494380800000,7.3],[496972800000,9.1],[499651200000,9],[502243200000,8.6],[504921600000,8.6],[507600000000,9.3],[510019200000,9.9],[512697600000,9.7],[515289600000,9.3],[517968000000,9.4],[520560000000,9.3],[523238400000,9],[525916800000,7.2],[528508800000,8.4],[531187200000,8.8],[533779200000,7],[536457600000,9.7],[539136000000,8.5],[541555200000,8.5],[544233600000,4.5],[546825600000,8.2],[549504000000,7.7],[552096000000,7.5],[554774400000,7.2],[557452800000,7.6],[560044800000,8.3],[562723200000,8.5],[565315200000,8.7],[567993600000,8.1],[570672000000,8.6],[573177600000,8.2],[575856000000,8.8],[578448000000,8.4],[581126400000,8.4],[583718400000,8.6],[586396800000,8.4],[589075200000,8.9],[591667200000,8.6],[594345600000,8.4],[596937600000,8.3],[599616000000,8.5],[602294400000,9],[604713600000,9.5],[607392000000,8.4],[609984000000,8.1],[612662400000,8.2],[615254400000,8.2],[617932800000,7.6],[620611200000,8.1],[623203200000,8.5],[625881600000,8.6],[628473600000,7.8],[631152000000,8],[633830400000,8.6],[636249600000,8.3],[638928000000,8.8],[641520000000,8.7],[644198400000,8.6],[646790400000,8.7],[649468800000,8.1],[652147200000,8.1],[654739200000,7.8],[657417600000,7.9],[660009600000,8.8],[662688000000,9.3],[665366400000,8.8],[667785600000,8],[670464000000,8.6],[673056000000,8.4],[675734400000,8.9],[678326400000,8.2],[681004800000,8.6],[683683200000,8.8],[686275200000,9.3],[688953600000,9],[691545600000,9.7],[694224000000,9.4],[696902400000,9.8],[699408000000,9.7],[702086400000,9.9],[704678400000,9.9],[707356800000,10.1],[709948800000,9.6],[712627200000,9.7],[715305600000,8.7],[717897600000,8],[720576000000,8],[723168000000,10.6],[725846400000,8.6],[728524800000,8.9],[730944000000,8.9],[733622400000,8.7],[736214400000,8.3],[738892800000,7.8],[741484800000,7.6],[744163200000,7.7],[746841600000,6.9],[749433600000,6.3],[752112000000,6.3],[754704000000,9.1],[757382400000,7.1],[760060800000,6.5],[762480000000,6.8],[765158400000,6.4],[767750400000,7.6],[770428800000,6.9],[773020800000,7],[775699200000,6.5],[778377600000,6.8],[780969600000,7.1],[783648000000,7],[786240000000,7.2],[788918400000,7.5],[791596800000,7.8],[794016000000,7.5],[796694400000,6.9],[799286400000,7.1],[801964800000,6.7],[804556800000,7.1],[807235200000,6.7],[809913600000,6.8],[812505600000,7.1],[815184000000,6.6],[817776000000,6.1],[820454400000,6.7],[823132800000,6.7],[825638400000,6.6],[828316800000,5.7],[830908800000,6.7],[833587200000,7.1],[836179200000,6.7],[838857600000,6.6],[841536000000,6.7],[844128000000,6.4],[846806400000,6.4],[849398400000,6.4],[852076800000,6.2],[854755200000,6.2],[857174400000,6.4],[859852800000,6.5],[862444800000,6.8],[865123200000,6.6],[867715200000,6.1],[870393600000,6],[873072000000,6.2],[875664000000,6.2],[878342400000,6.4],[880934400000,6.4],[883612800000,7.4],[886291200000,7.4],[888710400000,7.5],[891388800000,7.2],[893980800000,6.9],[896659200000,6.8],[899251200000,6.9],[901929600000,6.8],[904608000000,6.4],[907200000000,6.2],[909878400000,6.3],[912470400000,5.8],[915148800000,6.4],[917827200000,6.2],[920246400000,5.9],[922924800000,5.2],[925516800000,4.9],[928195200000,4.8],[930787200000,4.8],[933465600000,4.7],[936144000000,4.2],[938736000000,4.6],[941414400000,4.8],[944006400000,4.4],[946684800000,5.4],[949363200000,4.8],[951868800000,4.5],[954547200000,5],[957139200000,4.9],[959817600000,4.9],[962409600000,5.2],[965088000000,5.2],[967766400000,4.5],[970358400000,4.6],[973036800000,4.5],[975628800000,4.2],[978307200000,4.8],[980985600000,4.9],[983404800000,5.3],[986083200000,5],[988675200000,4.5],[991353600000,4.5],[993945600000,5.6],[996624000000,6.8],[999302400000,7],[1001894400000,3.4],[1004572800000,4.1],[1007164800000,4.5],[1009843200000,6.1],[1012521600000,5.8],[1014940800000,5.9],[1017619200000,5.8],[1020211200000,6.5],[1022889600000,6.4],[1025481600000,5.5],[1028160000000,5.4],[1030838400000,5.7],[1033430400000,5.7],[1036108800000,5.7],[1038700800000,5.5],[1041379200000,5.5],[1044057600000,5.6],[1046476800000,5.3],[1049155200000,5.3],[1051747200000,5.8],[1054425600000,5.6],[1057017600000,6.3],[1059696000000,6],[1062374400000,5.2],[1064966400000,5.3],[1067644800000,5.4],[1070236800000,5.4],[1072915200000,5],[1075593600000,5],[1078099200000,4.9],[1080777600000,5.3],[1083369600000,5.3],[1086048000000,5.8],[1088640000000,5.3],[1091318400000,5.2],[1093996800000,4.6],[1096588800000,4.5],[1099267200000,4.1],[1101859200000,6.9],[1104537600000,3.7],[1107216000000,3.4],[1109635200000,3.6],[1112313600000,3.1],[1114905600000,3.5],[1117584000000,2.9],[1120176000000,2.2],[1122854400000,2.7],[1125532800000,2.7],[1128124800000,3.1],[1130803200000,3.5],[1133395200000,3.7],[1136073600000,4.2],[1138752000000,4.2],[1141171200000,4.2],[1143849600000,4],[1146441600000,3.8],[1149120000000,4],[1151712000000,3.4],[1154390400000,3.6],[1157068800000,3.6],[1159660800000,3.6],[1162339200000,3.9],[1164931200000,3.7],[1167609600000,3.7],[1170288000000,4.1],[1172707200000,4.4],[1175385600000,4.2],[1177977600000,4],[1180656000000,3.8],[1183248000000,3.7],[1185926400000,3.4],[1188604800000,3.5],[1191196800000,3.4],[1193875200000,3.1],[1196467200000,3.6],[1199145600000,3.7],[1201824000000,4.1],[1204329600000,4],[1207008000000,3.4],[1209600000000,7.8],[1212278400000,5.5],[1214870400000,4.4],[1217548800000,3.8],[1220227200000,4.7],[1222819200000,5.5],[1225497600000,6.4],[1228089600000,6.4],[1230768000000,6.2],[1233446400000,5.5],[1235865600000,5.9],[1238544000000,6.8],[1241136000000,8.2],[1243814400000,6.7],[1246406400000,6],[1249084800000,4.9],[1251763200000,5.9],[1254355200000,5.4],[1257033600000,5.9],[1259625600000,5.9],[1262304000000,6.1],[1264982400000,5.8],[1267401600000,5.7],[1270080000000,6.4],[1272672000000,7],[1275350400000,6.9],[1277942400000,6.8],[1280620800000,6.9],[1283299200000,6.7],[1285891200000,6.6],[1288569600000,6.6],[1291161600000,7.1],[1293840000000,7.4],[1296518400000,7.6],[1298937600000,7],[1301616000000,6.9],[1304208000000,6.9],[1306886400000,7.2],[1309478400000,7.3],[1312156800000,7.2],[1314835200000,6.8],[1317427200000,6.8],[1320105600000,7],[1322697600000,7.8],[1325376000000,8],[1328054400000,8],[1330560000000,8.5],[1333238400000,8.7],[1335830400000,8.8],[1338508800000,9.1],[1341100800000,8.2],[1343779200000,8],[1346457600000,8.2],[1349049600000,8.8],[1351728000000,9.7],[1354320000000,12],[1356998400000,6.3],[1359676800000,5.8],[1362096000000,5.9],[1364774400000,6.4],[1367366400000,6.7],[1370044800000,6.8],[1372636800000,6.6],[1375315200000,6.7],[1377993600000,6.8],[1380585600000,6.3],[1383264000000,6.2],[1385856000000,6.4],[1388534400000,7.1],[1391212800000,7.3],[1393632000000,7.4],[1396310400000,7.4],[1398902400000,7.4],[1401580800000,7.4],[1404172800000,7.5],[1406851200000,7.2],[1409529600000,7.4],[1412121600000,7.2],[1414800000000,7.3],[1417392000000,7.6],[1420070400000,7.7],[1422748800000,7.9],[1425168000000,7.4],[1427846400000,7.6]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"fill\":{\"gradient\":{\"enabled\":true,\"shadeIntensity\":1,\"inverseColors\":false,\"opacityFrom\":0,\"opacityTo\":1,\"stops\":[0,2000]}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"area\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_grid.html","id":null,"dir":"Reference","previous_headings":"","what":"Add grids on chart — ax_grid","title":"Add grids on chart — ax_grid","text":"Add grids chart","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_grid.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Add grids on chart — ax_grid","text":"","code":"ax_grid( ax, show = NULL, borderColor = NULL, strokeDashArray = NULL, position = NULL, xaxis = NULL, yaxis = NULL, row = NULL, column = NULL, padding = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_grid.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Add grids on chart — ax_grid","text":"ax apexchart() htmlwidget object. show Logical. show hide grid area (including xaxis / yaxis) borderColor Colors grid borders / lines. strokeDashArray Creates dashes borders svg path. Higher number creates space dashes border. position Whether place grid behind chart paths front. Available options position: \"front\" \"back\" xaxis list parameters. yaxis list parameters. row list parameters. column list parameters. padding list parameters. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_grid.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Add grids on chart — ax_grid","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_grid.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Add grids on chart — ax_grid","text":"See https://apexcharts.com/docs/options/grid/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_grid.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Add grids on chart — ax_grid","text":"","code":"data(\"mpg\", package = \"ggplot2\") # Hide Y-axis and gridelines apex( data = mpg, mapping = aes(x = manufacturer) ) %>% ax_grid(show = FALSE) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":[],\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":18},{\"x\":\"chevrolet\",\"y\":19},{\"x\":\"dodge\",\"y\":37},{\"x\":\"ford\",\"y\":25},{\"x\":\"honda\",\"y\":9},{\"x\":\"hyundai\",\"y\":14},{\"x\":\"jeep\",\"y\":8},{\"x\":\"land rover\",\"y\":4},{\"x\":\"lincoln\",\"y\":3},{\"x\":\"mercury\",\"y\":4},{\"x\":\"nissan\",\"y\":13},{\"x\":\"pontiac\",\"y\":5},{\"x\":\"subaru\",\"y\":14},{\"x\":\"toyota\",\"y\":34},{\"x\":\"volkswagen\",\"y\":27}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"grid\":{\"show\":false}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # just grid lines apex( data = mpg, mapping = aes(x = manufacturer) ) %>% ax_grid(yaxis = list(lines = list(show = FALSE))) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":[],\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":18},{\"x\":\"chevrolet\",\"y\":19},{\"x\":\"dodge\",\"y\":37},{\"x\":\"ford\",\"y\":25},{\"x\":\"honda\",\"y\":9},{\"x\":\"hyundai\",\"y\":14},{\"x\":\"jeep\",\"y\":8},{\"x\":\"land rover\",\"y\":4},{\"x\":\"lincoln\",\"y\":3},{\"x\":\"mercury\",\"y\":4},{\"x\":\"nissan\",\"y\":13},{\"x\":\"pontiac\",\"y\":5},{\"x\":\"subaru\",\"y\":14},{\"x\":\"toyota\",\"y\":34},{\"x\":\"volkswagen\",\"y\":27}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"grid\":{\"yaxis\":{\"lines\":{\"show\":false}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # both x & y data(\"economics\", package = \"ggplot2\") apex( data = economics, mapping = aes(x = date, y = psavert), type = \"line\" ) %>% ax_grid( yaxis = list(lines = list(show = TRUE)), xaxis = list(lines = list(show = TRUE)) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"psavert\",\"type\":\"line\",\"data\":[[-79056000000,12.6],[-76377600000,12.6],[-73699200000,11.9],[-71107200000,12.9],[-68428800000,12.8],[-65836800000,11.8],[-63158400000,11.7],[-60480000000,12.3],[-57974400000,11.7],[-55296000000,12.3],[-52704000000,12],[-50025600000,11.7],[-47433600000,10.7],[-44755200000,10.5],[-42076800000,10.6],[-39484800000,10.8],[-36806400000,10.6],[-34214400000,11.1],[-31536000000,10.3],[-28857600000,9.7],[-26438400000,10.2],[-23760000000,9.7],[-21168000000,10.1],[-18489600000,11.1],[-15897600000,11.8],[-13219200000,11.5],[-10540800000,11.6],[-7948800000,11.4],[-5270400000,11.6],[-2678400000,11.8],[0,11.8],[2678400000,11.7],[5097600000,12.4],[7776000000,13.3],[10368000000,12.4],[13046400000,12.3],[15638400000,13.5],[18316800000,13.4],[20995200000,12.9],[23587200000,13.1],[26265600000,13.6],[28857600000,13.2],[31536000000,13.3],[34214400000,13.3],[36633600000,13.5],[39312000000,13.2],[41904000000,13.6],[44582400000,14.7],[47174400000,13.8],[49852800000,13.6],[52531200000,13.3],[55123200000,13.3],[57801600000,13.1],[60393600000,13],[63072000000,12.5],[65750400000,12.8],[68256000000,11.8],[70934400000,11.5],[73526400000,11.7],[76204800000,11.7],[78796800000,11.7],[81475200000,12],[84153600000,12.2],[86745600000,13],[89424000000,13.6],[92016000000,13.7],[94694400000,12.4],[97372800000,12.5],[99792000000,12.7],[102470400000,13.2],[105062400000,13.2],[107740800000,13.6],[110332800000,13.2],[113011200000,13.9],[115689600000,13.1],[118281600000,14.4],[120960000000,14.4],[123552000000,14.8],[126230400000,14.3],[128908800000,14.2],[131328000000,13.4],[134006400000,13.1],[136598400000,12.8],[139276800000,12.8],[141868800000,12.8],[144547200000,12.1],[147225600000,12.9],[149817600000,13.4],[152496000000,13.8],[155088000000,14],[157766400000,13.2],[160444800000,12.5],[162864000000,12.7],[165542400000,14.2],[168134400000,17.3],[170812800000,14.3],[173404800000,12.6],[176083200000,13],[178761600000,13],[181353600000,13.4],[184032000000,12.7],[186624000000,12],[189302400000,11.7],[191980800000,12.3],[194486400000,12.2],[197164800000,11.7],[199756800000,12.3],[202435200000,11.4],[205027200000,11.7],[207705600000,11.7],[210384000000,11.4],[212976000000,11.1],[215654400000,11.4],[218246400000,10.6],[220924800000,10.6],[223603200000,9.3],[226022400000,10.5],[228700800000,10.5],[231292800000,10.3],[233971200000,10.6],[236563200000,10.5],[239241600000,10.9],[241920000000,11.1],[244512000000,11],[247190400000,11.2],[249782400000,11.4],[252460800000,11.9],[255139200000,11.1],[257558400000,11],[260236800000,10.8],[262828800000,10.3],[265507200000,10],[268099200000,10.9],[270777600000,10.5],[273456000000,10.6],[276048000000,10.7],[278726400000,10.5],[281318400000,10.4],[283996800000,11.1],[286675200000,11.1],[289094400000,11.2],[291772800000,11],[294364800000,10.3],[297043200000,9.9],[299635200000,10.6],[302313600000,9.7],[304992000000,9.4],[307584000000,9.7],[310262400000,9.7],[312854400000,10.1],[315532800000,9.9],[318211200000,10.1],[320716800000,10.2],[323395200000,11.3],[325987200000,11.4],[328665600000,11.2],[331257600000,11.3],[333936000000,11.3],[336614400000,11.7],[339206400000,11.3],[341884800000,11.6],[344476800000,11.4],[347155200000,10.9],[349833600000,10.8],[352252800000,10.8],[354931200000,10.9],[357523200000,11],[360201600000,10.8],[362793600000,12.3],[365472000000,12],[368150400000,12.4],[370742400000,13],[373420800000,13.2],[376012800000,12.5],[378691200000,12.7],[381369600000,12.1],[383788800000,12.2],[386467200000,12.9],[389059200000,12.3],[391737600000,12.3],[394329600000,12.5],[397008000000,12.6],[399686400000,11.8],[402278400000,11.3],[404956800000,10.9],[407548800000,10.9],[410227200000,11.1],[412905600000,11.1],[415324800000,10.6],[418003200000,10.3],[420595200000,9.9],[423273600000,9.1],[425865600000,9.6],[428544000000,9.2],[431222400000,9.6],[433814400000,9.7],[436492800000,10.3],[439084800000,10.1],[441763200000,10],[444441600000,11.7],[446947200000,11.5],[449625600000,11.5],[452217600000,11.1],[454896000000,11.1],[457488000000,11.6],[460166400000,11.8],[462844800000,11.8],[465436800000,11.7],[468115200000,10.9],[470707200000,11.2],[473385600000,10.3],[476064000000,9.1],[478483200000,8.7],[481161600000,9.9],[483753600000,11.1],[486432000000,9.6],[489024000000,9.1],[491702400000,8.2],[494380800000,7.3],[496972800000,9.1],[499651200000,9],[502243200000,8.6],[504921600000,8.6],[507600000000,9.3],[510019200000,9.9],[512697600000,9.7],[515289600000,9.3],[517968000000,9.4],[520560000000,9.3],[523238400000,9],[525916800000,7.2],[528508800000,8.4],[531187200000,8.8],[533779200000,7],[536457600000,9.7],[539136000000,8.5],[541555200000,8.5],[544233600000,4.5],[546825600000,8.2],[549504000000,7.7],[552096000000,7.5],[554774400000,7.2],[557452800000,7.6],[560044800000,8.3],[562723200000,8.5],[565315200000,8.7],[567993600000,8.1],[570672000000,8.6],[573177600000,8.2],[575856000000,8.8],[578448000000,8.4],[581126400000,8.4],[583718400000,8.6],[586396800000,8.4],[589075200000,8.9],[591667200000,8.6],[594345600000,8.4],[596937600000,8.3],[599616000000,8.5],[602294400000,9],[604713600000,9.5],[607392000000,8.4],[609984000000,8.1],[612662400000,8.2],[615254400000,8.2],[617932800000,7.6],[620611200000,8.1],[623203200000,8.5],[625881600000,8.6],[628473600000,7.8],[631152000000,8],[633830400000,8.6],[636249600000,8.3],[638928000000,8.8],[641520000000,8.7],[644198400000,8.6],[646790400000,8.7],[649468800000,8.1],[652147200000,8.1],[654739200000,7.8],[657417600000,7.9],[660009600000,8.8],[662688000000,9.3],[665366400000,8.8],[667785600000,8],[670464000000,8.6],[673056000000,8.4],[675734400000,8.9],[678326400000,8.2],[681004800000,8.6],[683683200000,8.8],[686275200000,9.3],[688953600000,9],[691545600000,9.7],[694224000000,9.4],[696902400000,9.8],[699408000000,9.7],[702086400000,9.9],[704678400000,9.9],[707356800000,10.1],[709948800000,9.6],[712627200000,9.7],[715305600000,8.7],[717897600000,8],[720576000000,8],[723168000000,10.6],[725846400000,8.6],[728524800000,8.9],[730944000000,8.9],[733622400000,8.7],[736214400000,8.3],[738892800000,7.8],[741484800000,7.6],[744163200000,7.7],[746841600000,6.9],[749433600000,6.3],[752112000000,6.3],[754704000000,9.1],[757382400000,7.1],[760060800000,6.5],[762480000000,6.8],[765158400000,6.4],[767750400000,7.6],[770428800000,6.9],[773020800000,7],[775699200000,6.5],[778377600000,6.8],[780969600000,7.1],[783648000000,7],[786240000000,7.2],[788918400000,7.5],[791596800000,7.8],[794016000000,7.5],[796694400000,6.9],[799286400000,7.1],[801964800000,6.7],[804556800000,7.1],[807235200000,6.7],[809913600000,6.8],[812505600000,7.1],[815184000000,6.6],[817776000000,6.1],[820454400000,6.7],[823132800000,6.7],[825638400000,6.6],[828316800000,5.7],[830908800000,6.7],[833587200000,7.1],[836179200000,6.7],[838857600000,6.6],[841536000000,6.7],[844128000000,6.4],[846806400000,6.4],[849398400000,6.4],[852076800000,6.2],[854755200000,6.2],[857174400000,6.4],[859852800000,6.5],[862444800000,6.8],[865123200000,6.6],[867715200000,6.1],[870393600000,6],[873072000000,6.2],[875664000000,6.2],[878342400000,6.4],[880934400000,6.4],[883612800000,7.4],[886291200000,7.4],[888710400000,7.5],[891388800000,7.2],[893980800000,6.9],[896659200000,6.8],[899251200000,6.9],[901929600000,6.8],[904608000000,6.4],[907200000000,6.2],[909878400000,6.3],[912470400000,5.8],[915148800000,6.4],[917827200000,6.2],[920246400000,5.9],[922924800000,5.2],[925516800000,4.9],[928195200000,4.8],[930787200000,4.8],[933465600000,4.7],[936144000000,4.2],[938736000000,4.6],[941414400000,4.8],[944006400000,4.4],[946684800000,5.4],[949363200000,4.8],[951868800000,4.5],[954547200000,5],[957139200000,4.9],[959817600000,4.9],[962409600000,5.2],[965088000000,5.2],[967766400000,4.5],[970358400000,4.6],[973036800000,4.5],[975628800000,4.2],[978307200000,4.8],[980985600000,4.9],[983404800000,5.3],[986083200000,5],[988675200000,4.5],[991353600000,4.5],[993945600000,5.6],[996624000000,6.8],[999302400000,7],[1001894400000,3.4],[1004572800000,4.1],[1007164800000,4.5],[1009843200000,6.1],[1012521600000,5.8],[1014940800000,5.9],[1017619200000,5.8],[1020211200000,6.5],[1022889600000,6.4],[1025481600000,5.5],[1028160000000,5.4],[1030838400000,5.7],[1033430400000,5.7],[1036108800000,5.7],[1038700800000,5.5],[1041379200000,5.5],[1044057600000,5.6],[1046476800000,5.3],[1049155200000,5.3],[1051747200000,5.8],[1054425600000,5.6],[1057017600000,6.3],[1059696000000,6],[1062374400000,5.2],[1064966400000,5.3],[1067644800000,5.4],[1070236800000,5.4],[1072915200000,5],[1075593600000,5],[1078099200000,4.9],[1080777600000,5.3],[1083369600000,5.3],[1086048000000,5.8],[1088640000000,5.3],[1091318400000,5.2],[1093996800000,4.6],[1096588800000,4.5],[1099267200000,4.1],[1101859200000,6.9],[1104537600000,3.7],[1107216000000,3.4],[1109635200000,3.6],[1112313600000,3.1],[1114905600000,3.5],[1117584000000,2.9],[1120176000000,2.2],[1122854400000,2.7],[1125532800000,2.7],[1128124800000,3.1],[1130803200000,3.5],[1133395200000,3.7],[1136073600000,4.2],[1138752000000,4.2],[1141171200000,4.2],[1143849600000,4],[1146441600000,3.8],[1149120000000,4],[1151712000000,3.4],[1154390400000,3.6],[1157068800000,3.6],[1159660800000,3.6],[1162339200000,3.9],[1164931200000,3.7],[1167609600000,3.7],[1170288000000,4.1],[1172707200000,4.4],[1175385600000,4.2],[1177977600000,4],[1180656000000,3.8],[1183248000000,3.7],[1185926400000,3.4],[1188604800000,3.5],[1191196800000,3.4],[1193875200000,3.1],[1196467200000,3.6],[1199145600000,3.7],[1201824000000,4.1],[1204329600000,4],[1207008000000,3.4],[1209600000000,7.8],[1212278400000,5.5],[1214870400000,4.4],[1217548800000,3.8],[1220227200000,4.7],[1222819200000,5.5],[1225497600000,6.4],[1228089600000,6.4],[1230768000000,6.2],[1233446400000,5.5],[1235865600000,5.9],[1238544000000,6.8],[1241136000000,8.2],[1243814400000,6.7],[1246406400000,6],[1249084800000,4.9],[1251763200000,5.9],[1254355200000,5.4],[1257033600000,5.9],[1259625600000,5.9],[1262304000000,6.1],[1264982400000,5.8],[1267401600000,5.7],[1270080000000,6.4],[1272672000000,7],[1275350400000,6.9],[1277942400000,6.8],[1280620800000,6.9],[1283299200000,6.7],[1285891200000,6.6],[1288569600000,6.6],[1291161600000,7.1],[1293840000000,7.4],[1296518400000,7.6],[1298937600000,7],[1301616000000,6.9],[1304208000000,6.9],[1306886400000,7.2],[1309478400000,7.3],[1312156800000,7.2],[1314835200000,6.8],[1317427200000,6.8],[1320105600000,7],[1322697600000,7.8],[1325376000000,8],[1328054400000,8],[1330560000000,8.5],[1333238400000,8.7],[1335830400000,8.8],[1338508800000,9.1],[1341100800000,8.2],[1343779200000,8],[1346457600000,8.2],[1349049600000,8.8],[1351728000000,9.7],[1354320000000,12],[1356998400000,6.3],[1359676800000,5.8],[1362096000000,5.9],[1364774400000,6.4],[1367366400000,6.7],[1370044800000,6.8],[1372636800000,6.6],[1375315200000,6.7],[1377993600000,6.8],[1380585600000,6.3],[1383264000000,6.2],[1385856000000,6.4],[1388534400000,7.1],[1391212800000,7.3],[1393632000000,7.4],[1396310400000,7.4],[1398902400000,7.4],[1401580800000,7.4],[1404172800000,7.5],[1406851200000,7.2],[1409529600000,7.4],[1412121600000,7.2],[1414800000000,7.3],[1417392000000,7.6],[1420070400000,7.7],[1422748800000,7.9],[1425168000000,7.4],[1427846400000,7.6]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}},\"yaxis\":{\"lines\":{\"show\":true}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_labels.html","id":null,"dir":"Reference","previous_headings":"","what":"Alternative axis labels — ax_labels","title":"Alternative axis labels — ax_labels","text":"Alternative axis labels","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_labels.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Alternative axis labels — ax_labels","text":"","code":"ax_labels(ax, ...) ax_labels2(ax, labels)"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_labels.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Alternative axis labels — ax_labels","text":"ax apexchart() htmlwidget object. ... Vector. Axis Charts (line / column), labels can set instead setting xaxis categories option. , pie/donut charts, label corresponds value series array. labels vector use labels.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_labels.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Alternative axis labels — ax_labels","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_labels.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Alternative axis labels — ax_labels","text":"See https://apexcharts.com/docs/options/labels/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_labels.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Alternative axis labels — ax_labels","text":"","code":"apexchart() %>% ax_chart(type = \"pie\") %>% ax_series(23, 45, 56) %>% ax_labels(\"A\", \"B\", \"C\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"pie\"},\"series\":[23,45,56],\"labels\":[\"A\",\"B\",\"C\"]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false},\"evals\":[],\"jsHooks\":[]} # same as apexchart() %>% ax_chart(type = \"pie\") %>% ax_series2(c(23, 45, 56)) %>% ax_labels2(c(\"A\", \"B\", \"C\")) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"pie\"},\"series\":[23,45,56],\"labels\":[\"A\",\"B\",\"C\"]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_labs.html","id":null,"dir":"Reference","previous_headings":"","what":"Modify axis, legend, and chart labels — ax_labs","title":"Modify axis, legend, and chart labels — ax_labs","text":"Modify axis, legend, chart labels","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_labs.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Modify axis, legend, and chart labels — ax_labs","text":"","code":"ax_labs(ax, title = NULL, subtitle = NULL, x = NULL, y = NULL)"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_labs.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Modify axis, legend, and chart labels — ax_labs","text":"ax apexchart() htmlwidget object. title Text title. subtitle Text subtitle. x Text x-axis label. y Text y-axis label.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_labs.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Modify axis, legend, and chart labels — ax_labs","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_labs.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Modify axis, legend, and chart labels — ax_labs","text":"","code":"meteo_paris <- data.frame( month = month.name, tmax = c(7, 8, 12, 15, 19, 23, 25, 25, 21, 16, 11, 8), tmin = c(3, 3, 5, 7, 11, 14, 16, 16, 13, 10, 6, 3) ) apex(meteo_paris, type = \"column\", aes(x = month, y = tmin)) %>% ax_labs( title = \"Average minimal temperature in Paris\", subtitle = \"Data from NOAA\", x = \"Month\", y = \"Temperature (\\u00b0C)\" ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"tmin\",\"type\":\"bar\",\"data\":[{\"x\":\"January\",\"y\":3},{\"x\":\"February\",\"y\":3},{\"x\":\"March\",\"y\":5},{\"x\":\"April\",\"y\":7},{\"x\":\"May\",\"y\":11},{\"x\":\"June\",\"y\":14},{\"x\":\"July\",\"y\":16},{\"x\":\"August\",\"y\":16},{\"x\":\"September\",\"y\":13},{\"x\":\"October\",\"y\":10},{\"x\":\"November\",\"y\":6},{\"x\":\"December\",\"y\":3}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}},\"title\":{\"text\":\"Temperature (°C)\",\"style\":{\"fontWeight\":400,\"fontSize\":\"14px\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}},\"title\":{\"text\":\"Month\",\"style\":{\"fontWeight\":400,\"fontSize\":\"14px\"}}},\"title\":{\"text\":\"Average minimal temperature in Paris\",\"style\":{\"fontWeight\":700,\"fontSize\":\"16px\"}},\"subtitle\":{\"text\":\"Data from NOAA\",\"style\":{\"fontWeight\":400,\"fontSize\":\"14px\"}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"April\",\"max\":\"September\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_legend.html","id":null,"dir":"Reference","previous_headings":"","what":"Legend properties — ax_legend","title":"Legend properties — ax_legend","text":"Legend properties","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_legend.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Legend properties — ax_legend","text":"","code":"ax_legend( ax, show = NULL, position = NULL, showForSingleSeries = NULL, showForNullSeries = NULL, showForZeroSeries = NULL, horizontalAlign = NULL, fontSize = NULL, textAnchor = NULL, offsetY = NULL, offsetX = NULL, formatter = NULL, labels = NULL, markers = NULL, itemMargin = NULL, containerMargin = NULL, onItemClick = NULL, onItemHover = NULL, floating = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_legend.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Legend properties — ax_legend","text":"ax apexchart() htmlwidget object. show Logical. Whether show hide legend container. position Available position options legend: \"top\", \"right\", \"bottom\", \"left\". showForSingleSeries Show legend even just 1 series. showForNullSeries Allows hide particular legend series contains null values. showForZeroSeries Allows hide particular legend series contains 0 values. horizontalAlign Available options horizontal alignment: \"right\", \"center\", \"left\". fontSize Sets fontSize legend text elements textAnchor alignment text relative legend's drawing position offsetY Sets top offset legend container. offsetX Sets left offset legend container. formatter JS function. custom formatter function append additional text legend series names. labels List two items \"foreColor\" (Custom text color legend labels) \"useSeriesColors\" (Logical, whether use primary colors ) markers List. itemMargin List two items \"horizontal\" (Horizontal margin individual legend item) \"vertical\" (Vertical margin individual legend item). containerMargin List two items \"top\" (Top margin whole legend container) \"left\" (Left margin whole legend container). onItemClick List item \"toggleDataSeries\", logical, clicked legend item, toggle visibility series chart. onItemHover List item \"highlightDataSeries\", logical, hovered legend item, highlight paths hovered series chart. floating Logical. floating option take legend chart area make float chart. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_legend.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Legend properties — ax_legend","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_legend.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Legend properties — ax_legend","text":"See https://apexcharts.com/docs/options/legend/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_legend.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Legend properties — ax_legend","text":"","code":"data(\"mpg\", package = \"ggplot2\") # Legend position apex( data = mpg, mapping = aes(x = manufacturer, fill = year) ) %>% ax_legend(position = \"right\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"1999\",\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":9},{\"x\":\"chevrolet\",\"y\":7},{\"x\":\"dodge\",\"y\":16},{\"x\":\"ford\",\"y\":15},{\"x\":\"honda\",\"y\":5},{\"x\":\"hyundai\",\"y\":6},{\"x\":\"jeep\",\"y\":2},{\"x\":\"land rover\",\"y\":2},{\"x\":\"lincoln\",\"y\":2},{\"x\":\"mercury\",\"y\":2},{\"x\":\"nissan\",\"y\":6},{\"x\":\"pontiac\",\"y\":3},{\"x\":\"subaru\",\"y\":6},{\"x\":\"toyota\",\"y\":20},{\"x\":\"volkswagen\",\"y\":16}]},{\"name\":\"2008\",\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":9},{\"x\":\"chevrolet\",\"y\":12},{\"x\":\"dodge\",\"y\":21},{\"x\":\"ford\",\"y\":10},{\"x\":\"honda\",\"y\":4},{\"x\":\"hyundai\",\"y\":8},{\"x\":\"jeep\",\"y\":6},{\"x\":\"land rover\",\"y\":2},{\"x\":\"lincoln\",\"y\":1},{\"x\":\"mercury\",\"y\":2},{\"x\":\"nissan\",\"y\":7},{\"x\":\"pontiac\",\"y\":2},{\"x\":\"subaru\",\"y\":8},{\"x\":\"toyota\",\"y\":14},{\"x\":\"volkswagen\",\"y\":11}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"legend\":{\"position\":\"right\"}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # hide legend apex( data = mpg, mapping = aes(x = manufacturer, fill = year) ) %>% ax_legend(show = FALSE) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"1999\",\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":9},{\"x\":\"chevrolet\",\"y\":7},{\"x\":\"dodge\",\"y\":16},{\"x\":\"ford\",\"y\":15},{\"x\":\"honda\",\"y\":5},{\"x\":\"hyundai\",\"y\":6},{\"x\":\"jeep\",\"y\":2},{\"x\":\"land rover\",\"y\":2},{\"x\":\"lincoln\",\"y\":2},{\"x\":\"mercury\",\"y\":2},{\"x\":\"nissan\",\"y\":6},{\"x\":\"pontiac\",\"y\":3},{\"x\":\"subaru\",\"y\":6},{\"x\":\"toyota\",\"y\":20},{\"x\":\"volkswagen\",\"y\":16}]},{\"name\":\"2008\",\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":9},{\"x\":\"chevrolet\",\"y\":12},{\"x\":\"dodge\",\"y\":21},{\"x\":\"ford\",\"y\":10},{\"x\":\"honda\",\"y\":4},{\"x\":\"hyundai\",\"y\":8},{\"x\":\"jeep\",\"y\":6},{\"x\":\"land rover\",\"y\":2},{\"x\":\"lincoln\",\"y\":1},{\"x\":\"mercury\",\"y\":2},{\"x\":\"nissan\",\"y\":7},{\"x\":\"pontiac\",\"y\":2},{\"x\":\"subaru\",\"y\":8},{\"x\":\"toyota\",\"y\":14},{\"x\":\"volkswagen\",\"y\":11}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"legend\":{\"show\":false}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_markers.html","id":null,"dir":"Reference","previous_headings":"","what":"Markers properties — ax_markers","title":"Markers properties — ax_markers","text":"Markers properties","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_markers.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Markers properties — ax_markers","text":"","code":"ax_markers( ax, size = NULL, colors = NULL, strokeColor = NULL, strokeWidth = NULL, strokeOpacity = NULL, fillOpacity = NULL, shape = NULL, radius = NULL, offsetX = NULL, offsetY = NULL, hover = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_markers.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Markers properties — ax_markers","text":"ax apexchart() htmlwidget object. size Numeric. Size marker point. colors Sets fill color(s) marker point. strokeColor Stroke Color marker. strokeWidth Stroke Size marker. strokeOpacity Opacity border around marker. fillOpacity Opacity marker fill color. shape Shape marker. Available Options shape: \"square\" \"circle\". radius Numeric. Radius marker (applies square shape) offsetX Numeric. Sets left offset marker. offsetY Numeric. Sets top offset marker. hover List item size (Size marker active). ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_markers.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Markers properties — ax_markers","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_markers.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Markers properties — ax_markers","text":"See https://apexcharts.com/docs/options/markers/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_markers.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Markers properties — ax_markers","text":"","code":"data(\"economics\", package = \"ggplot2\") # show points apex( data = tail(economics, 20), type = \"line\", mapping = aes(x = date, y = uempmed) ) %>% ax_markers(size = 6) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[1377993600000,16.5],[1380585600000,16.3],[1383264000000,17.1],[1385856000000,17.3],[1388534400000,15.4],[1391212800000,15.9],[1393632000000,15.8],[1396310400000,15.7],[1398902400000,14.6],[1401580800000,13.8],[1404172800000,13.1],[1406851200000,12.9],[1409529600000,13.4],[1412121600000,13.6],[1414800000000,13],[1417392000000,12.9],[1420070400000,13.2],[1422748800000,12.9],[1425168000000,12],[1427846400000,11.5]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"markers\":{\"size\":6}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2013-09-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_nodata.html","id":null,"dir":"Reference","previous_headings":"","what":"Configuration for charts with no data — ax_nodata","title":"Configuration for charts with no data — ax_nodata","text":"Configuration charts data","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_nodata.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Configuration for charts with no data — ax_nodata","text":"","code":"ax_nodata( ax, text = \"No data\", align = \"center\", verticalAlign = \"middle\", color = NULL, fontSize = NULL, fontFamily = NULL, offsetX = NULL, offsetY = NULL )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_nodata.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Configuration for charts with no data — ax_nodata","text":"ax apexchart() htmlwidget object. text text display -data available. align Horizontal alignment: \"left\", \"center\" \"right\". verticalAlign Vertical alignment: \"top\", \"middle\" \"bottom\". color ForeColor text. fontSize FontSize text. fontFamily FontFamily text. offsetX, offsetY Text offset.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_nodata.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Configuration for charts with no data — ax_nodata","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_nodata.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Configuration for charts with no data — ax_nodata","text":"","code":"empty <- data.frame( var1 = character(0), var2 = numeric(0) ) apex(empty, aes(var1, var2), \"column\") %>% ax_nodata( text = \"Sorry no data to visualize\", fontSize = \"30px\" ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"var2\",\"type\":\"bar\",\"data\":[]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"noData\":{\"text\":\"Sorry no data to visualize\",\"align\":\"center\",\"verticalAlign\":\"middle\",\"style\":{\"fontSize\":\"30px\"}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_plotOptions.html","id":null,"dir":"Reference","previous_headings":"","what":"Specific options for chart — ax_plotOptions","title":"Specific options for chart — ax_plotOptions","text":"Specific options chart","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_plotOptions.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Specific options for chart — ax_plotOptions","text":"","code":"ax_plotOptions( ax, bar = NULL, heatmap = NULL, radialBar = NULL, pie = NULL, bubble = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_plotOptions.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Specific options for chart — ax_plotOptions","text":"ax apexchart() htmlwidget object. bar See bar_opts. heatmap See heatmap_opts. radialBar See radialBar_opts. pie See pie_opts. bubble See bubble_opts. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_plotOptions.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Specific options for chart — ax_plotOptions","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_plotOptions.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Specific options for chart — ax_plotOptions","text":"","code":"data(\"diamonds\", package = \"ggplot2\") # Stack bar type apex( data = diamonds, mapping = aes(x = cut) ) %>% ax_plotOptions( bar = bar_opts(endingShape = \"rounded\", columnWidth = \"10%\") ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":[],\"type\":\"bar\",\"data\":[{\"x\":\"Fair\",\"y\":1610},{\"x\":\"Good\",\"y\":4906},{\"x\":\"Very Good\",\"y\":12082},{\"x\":\"Premium\",\"y\":13791},{\"x\":\"Ideal\",\"y\":21551}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"endingShape\":\"rounded\",\"columnWidth\":\"10%\"}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"Fair\",\"max\":\"Very Good\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # Pie apex( data = diamonds, mapping = aes(x = cut), type = \"pie\" ) %>% ax_plotOptions( pie = pie_opts(customScale = 0.5) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"pie\"},\"series\":[1610,4906,12082,13791,21551],\"labels\":[\"Fair\",\"Good\",\"Very Good\",\"Premium\",\"Ideal\"],\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"plotOptions\":{\"pie\":{\"customScale\":0.5}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"Fair\",\"max\":\"Very Good\"},\"type\":\"pie\"},\"evals\":[],\"jsHooks\":[]} # Radial apexchart() %>% ax_chart(type = \"radialBar\") %>% ax_plotOptions( radialBar = radialBar_opts( hollow = list(size = \"70%\") ) ) %>% ax_series(70) %>% ax_labels(\"Indicator\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"radialBar\"},\"plotOptions\":{\"radialBar\":{\"hollow\":{\"size\":\"70%\"}}},\"series\":[70],\"labels\":[\"Indicator\"]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_proxy_options.html","id":null,"dir":"Reference","previous_headings":"","what":"Proxy for updating options — ax_proxy_options","title":"Proxy for updating options — ax_proxy_options","text":"Allows update configuration object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_proxy_options.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Proxy for updating options — ax_proxy_options","text":"","code":"ax_proxy_options(proxy, options)"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_proxy_options.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Proxy for updating options — ax_proxy_options","text":"proxy apexchartProxy htmlwidget object. options New options set.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_proxy_options.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Proxy for updating options — ax_proxy_options","text":"","code":"if (interactive()) { library(shiny) ui <- fluidPage( fluidRow( column( width = 8, offset = 2, tags$h2(\"Update options\"), apexchartOutput(outputId = \"chart\"), checkboxInput( inputId = \"show_label_xaxis\", label = \"Show x-axis labels\" ), textInput( inputId = \"yaxis_title\", label = \"Y-axis title\" ) ) ) ) server <- function(input, output, session) { output$chart <- renderApexchart({ apexchart() %>% ax_chart(type = \"bar\") %>% ax_series(list( name = \"Example\", data = c(23, 43, 76, 31) )) %>% ax_xaxis( categories = c(\"Label A\", \"Label B\", \"Label C\", \"Label D\") ) }) observe({ apexchartProxy(\"chart\") %>% ax_proxy_options(list( xaxis = list( labels = list(show = input$show_label_xaxis) ), yaxis = list( title = list(text = input$yaxis_title) ) )) }) } shinyApp(ui, server) }"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_proxy_series.html","id":null,"dir":"Reference","previous_headings":"","what":"Proxy for updating series. — ax_proxy_series","title":"Proxy for updating series. — ax_proxy_series","text":"Allows update series array overriding existing one.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_proxy_series.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Proxy for updating series. — ax_proxy_series","text":"","code":"ax_proxy_series(proxy, newSeries, animate = TRUE)"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_proxy_series.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Proxy for updating series. — ax_proxy_series","text":"proxy apexchartProxy htmlwidget object. newSeries series array override existing one. animate chart animate re-rendering.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_proxy_series.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Proxy for updating series. — ax_proxy_series","text":"","code":"if (interactive()) { library(shiny) ui <- fluidPage( fluidRow( column( width = 8, offset = 2, tags$h2(\"Real time chart\"), apexchartOutput(outputId = \"chart\") ) ) ) server <- function(input, output, session) { rv <- reactiveValues() rv$df <- data.frame( date = Sys.Date() + 1:20, values = sample(10:90, 20, TRUE) ) observe({ invalidateLater(1000, session) df <- isolate(rv$df) # Append new line of data df <- rbind( df, data.frame( date = df$date[length(df$date)] + 1, values = sample(10:90, 1, TRUE) ) ) rv$df <- df }) output$chart <- renderApexchart({ # Generate chart once apex(isolate(rv$df), aes(date, values), \"spline\") %>% ax_xaxis( range = 10 * 24 * 60 * 60 * 1000 # Fixed range for x-axis : 10 days # days*hours*minutes*seconds*milliseconds ) }) observe({ # Update chart to add new data apexchartProxy(\"chart\") %>% ax_proxy_series( parse_df(rv$df), T ) }) } shinyApp(ui, server) }"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_responsive.html","id":null,"dir":"Reference","previous_headings":"","what":"Responsive options — ax_responsive","title":"Responsive options — ax_responsive","text":"Responsive options","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_responsive.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Responsive options — ax_responsive","text":"","code":"ax_responsive(ax, ...)"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_responsive.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Responsive options — ax_responsive","text":"ax apexchart() htmlwidget object. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_responsive.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Responsive options — ax_responsive","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_responsive.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Responsive options — ax_responsive","text":"See https://apexcharts.com/docs/options/responsive/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_responsive.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Responsive options — ax_responsive","text":"","code":"data(\"mpg\", package = \"ggplot2\") # Open in browser and resize window apex( data = mpg, mapping = aes(x = manufacturer, fill = year), type = \"bar\" ) %>% ax_legend(position = \"right\") %>% ax_responsive( list( breakpoint = 1000, options = list( plotOptions = list( bar = list( horizontal = FALSE ) ), legend = list( position = \"bottom\" ) ) ) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"1999\",\"data\":[{\"x\":\"audi\",\"y\":9},{\"x\":\"chevrolet\",\"y\":7},{\"x\":\"dodge\",\"y\":16},{\"x\":\"ford\",\"y\":15},{\"x\":\"honda\",\"y\":5},{\"x\":\"hyundai\",\"y\":6},{\"x\":\"jeep\",\"y\":2},{\"x\":\"land rover\",\"y\":2},{\"x\":\"lincoln\",\"y\":2},{\"x\":\"mercury\",\"y\":2},{\"x\":\"nissan\",\"y\":6},{\"x\":\"pontiac\",\"y\":3},{\"x\":\"subaru\",\"y\":6},{\"x\":\"toyota\",\"y\":20},{\"x\":\"volkswagen\",\"y\":16}]},{\"name\":\"2008\",\"data\":[{\"x\":\"audi\",\"y\":9},{\"x\":\"chevrolet\",\"y\":12},{\"x\":\"dodge\",\"y\":21},{\"x\":\"ford\",\"y\":10},{\"x\":\"honda\",\"y\":4},{\"x\":\"hyundai\",\"y\":8},{\"x\":\"jeep\",\"y\":6},{\"x\":\"land rover\",\"y\":2},{\"x\":\"lincoln\",\"y\":1},{\"x\":\"mercury\",\"y\":2},{\"x\":\"nissan\",\"y\":7},{\"x\":\"pontiac\",\"y\":2},{\"x\":\"subaru\",\"y\":8},{\"x\":\"toyota\",\"y\":14},{\"x\":\"volkswagen\",\"y\":11}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":true}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":false}},\"xaxis\":{\"lines\":{\"show\":true}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"legend\":{\"position\":\"right\"},\"responsive\":[{\"breakpoint\":1000,\"options\":{\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"legend\":{\"position\":\"bottom\"}}}]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"bar\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_states.html","id":null,"dir":"Reference","previous_headings":"","what":"Charts' states — ax_states","title":"Charts' states — ax_states","text":"Charts' states","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_states.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Charts' states — ax_states","text":"","code":"ax_states(ax, normal = NULL, hover = NULL, active = NULL, ...)"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_states.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Charts' states — ax_states","text":"ax apexchart() htmlwidget object. normal list parameters. hover list parameters. active list parameters. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_states.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Charts' states — ax_states","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_states.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Charts' states — ax_states","text":"See https://apexcharts.com/docs/options/states/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_states.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Charts' states — ax_states","text":"","code":"data(\"mpg\", package = \"ggplot2\") # Inverse effect on hover apex( data = mpg, mapping = aes(x = manufacturer), type = \"bar\" ) %>% ax_states( hover = list( filter = list( type = \"darken\" ) ) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":[],\"data\":[{\"x\":\"audi\",\"y\":18},{\"x\":\"chevrolet\",\"y\":19},{\"x\":\"dodge\",\"y\":37},{\"x\":\"ford\",\"y\":25},{\"x\":\"honda\",\"y\":9},{\"x\":\"hyundai\",\"y\":14},{\"x\":\"jeep\",\"y\":8},{\"x\":\"land rover\",\"y\":4},{\"x\":\"lincoln\",\"y\":3},{\"x\":\"mercury\",\"y\":4},{\"x\":\"nissan\",\"y\":13},{\"x\":\"pontiac\",\"y\":5},{\"x\":\"subaru\",\"y\":14},{\"x\":\"toyota\",\"y\":34},{\"x\":\"volkswagen\",\"y\":27}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":true}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"grid\":{\"yaxis\":{\"lines\":{\"show\":false}},\"xaxis\":{\"lines\":{\"show\":true}}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"states\":{\"hover\":{\"filter\":{\"type\":\"darken\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"bar\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_stroke.html","id":null,"dir":"Reference","previous_headings":"","what":"Stroke properties — ax_stroke","title":"Stroke properties — ax_stroke","text":"Stroke properties","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_stroke.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Stroke properties — ax_stroke","text":"","code":"ax_stroke( ax, show = NULL, curve = NULL, lineCap = NULL, width = NULL, colors = NULL, dashArray = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_stroke.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Stroke properties — ax_stroke","text":"ax apexchart() htmlwidget object. show Logical. show hide path-stroke / line curve line / area charts, whether draw smooth lines straight lines. Available Options: \"smooth\" (connects points curve fashion. Also known spline) \"straight\" (connect points straight lines.). lineCap setting starting ending points stroke. Available Options: \"butt\" (ends stroke 90-degree angle), \"square\" (similar butt except extends stroke beyond length path) \"round\" (ends path-stroke radius smooths start end points) width Sets width border svg path. colors Colors fill border paths. dashArray Creates dashes borders svg path. Higher number creates space dashes border. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_stroke.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Stroke properties — ax_stroke","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_stroke.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Stroke properties — ax_stroke","text":"See https://apexcharts.com/docs/options/stroke/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_stroke.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Stroke properties — ax_stroke","text":"","code":"data(\"economics\", package = \"ggplot2\") apex( data = economics, mapping = aes(x = date, y = uempmed), type = \"line\" ) %>% ax_stroke( width = 1, dashArray = 4 ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[-79056000000,4.5],[-76377600000,4.7],[-73699200000,4.6],[-71107200000,4.9],[-68428800000,4.7],[-65836800000,4.8],[-63158400000,5.1],[-60480000000,4.5],[-57974400000,4.1],[-55296000000,4.6],[-52704000000,4.4],[-50025600000,4.4],[-47433600000,4.5],[-44755200000,4.2],[-42076800000,4.6],[-39484800000,4.8],[-36806400000,4.4],[-34214400000,4.4],[-31536000000,4.4],[-28857600000,4.9],[-26438400000,4],[-23760000000,4],[-21168000000,4.2],[-18489600000,4.4],[-15897600000,4.4],[-13219200000,4.4],[-10540800000,4.7],[-7948800000,4.5],[-5270400000,4.8],[-2678400000,4.6],[0,4.6],[2678400000,4.5],[5097600000,4.6],[7776000000,4.1],[10368000000,4.7],[13046400000,4.9],[15638400000,5.1],[18316800000,5.4],[20995200000,5.2],[23587200000,5.2],[26265600000,5.6],[28857600000,5.9],[31536000000,6.2],[34214400000,6.3],[36633600000,6.4],[39312000000,6.5],[41904000000,6.7],[44582400000,5.7],[47174400000,6.2],[49852800000,6.4],[52531200000,5.8],[55123200000,6.5],[57801600000,6.4],[60393600000,6.2],[63072000000,6.2],[65750400000,6.6],[68256000000,6.6],[70934400000,6.7],[73526400000,6.6],[76204800000,5.4],[78796800000,6.1],[81475200000,6],[84153600000,5.6],[86745600000,5.7],[89424000000,5.7],[92016000000,6.1],[94694400000,5.7],[97372800000,5.2],[99792000000,5.5],[102470400000,5],[105062400000,4.9],[107740800000,5],[110332800000,5.2],[113011200000,4.9],[115689600000,5.4],[118281600000,5.5],[120960000000,5.1],[123552000000,4.7],[126230400000,5],[128908800000,5.1],[131328000000,4.8],[134006400000,5],[136598400000,4.6],[139276800000,5.3],[141868800000,5.7],[144547200000,5],[147225600000,5.3],[149817600000,5.5],[152496000000,5.2],[155088000000,5.7],[157766400000,6.3],[160444800000,7.1],[162864000000,7.2],[165542400000,8.7],[168134400000,9.4],[170812800000,8.8],[173404800000,8.6],[176083200000,9.2],[178761600000,9.2],[181353600000,8.6],[184032000000,9.5],[186624000000,9],[189302400000,9],[191980800000,8.2],[194486400000,8.7],[197164800000,8.2],[199756800000,8.3],[202435200000,7.8],[205027200000,7.7],[207705600000,7.9],[210384000000,7.8],[212976000000,7.7],[215654400000,8.4],[218246400000,8],[220924800000,7.5],[223603200000,7.2],[226022400000,7.2],[228700800000,7.3],[231292800000,7.9],[233971200000,6.2],[236563200000,7.1],[239241600000,7],[241920000000,6.7],[244512000000,6.9],[247190400000,7],[249782400000,6.8],[252460800000,6.5],[255139200000,6.7],[257558400000,6.2],[260236800000,6.1],[262828800000,5.7],[265507200000,6],[268099200000,5.8],[270777600000,5.8],[273456000000,5.6],[276048000000,5.9],[278726400000,5.5],[281318400000,5.6],[283996800000,5.9],[286675200000,5.9],[289094400000,5.9],[291772800000,5.4],[294364800000,5.6],[297043200000,5.6],[299635200000,5.9],[302313600000,4.8],[304992000000,5.5],[307584000000,5.5],[310262400000,5.3],[312854400000,5.7],[315532800000,5.3],[318211200000,5.8],[320716800000,6],[323395200000,5.8],[325987200000,5.7],[328665600000,6.4],[331257600000,7],[333936000000,7.5],[336614400000,7.7],[339206400000,7.5],[341884800000,7.7],[344476800000,7.5],[347155200000,7.4],[349833600000,7.1],[352252800000,7.1],[354931200000,7.4],[357523200000,6.9],[360201600000,6.6],[362793600000,7.1],[365472000000,7.2],[368150400000,6.8],[370742400000,6.8],[373420800000,6.9],[376012800000,6.9],[378691200000,7.1],[381369600000,7.5],[383788800000,7.7],[386467200000,8.1],[389059200000,8.5],[391737600000,9.5],[394329600000,8.5],[397008000000,8.7],[399686400000,9.5],[402278400000,9.7],[404956800000,10],[407548800000,10.2],[410227200000,11.1],[412905600000,9.8],[415324800000,10.4],[418003200000,10.9],[420595200000,12.3],[423273600000,11.3],[425865600000,10.1],[428544000000,9.3],[431222400000,9.3],[433814400000,9.4],[436492800000,9.3],[439084800000,8.7],[441763200000,9.1],[444441600000,8.3],[446947200000,8.3],[449625600000,8.2],[452217600000,9.1],[454896000000,7.5],[457488000000,7.5],[460166400000,7.3],[462844800000,7.6],[465436800000,7.2],[468115200000,7.2],[470707200000,7.3],[473385600000,6.8],[476064000000,7.1],[478483200000,7.1],[481161600000,6.9],[483753600000,6.9],[486432000000,6.6],[489024000000,6.9],[491702400000,7.1],[494380800000,6.9],[496972800000,7.1],[499651200000,7],[502243200000,6.8],[504921600000,6.7],[507600000000,6.9],[510019200000,6.8],[512697600000,6.7],[515289600000,6.8],[517968000000,7],[520560000000,6.9],[523238400000,7.1],[525916800000,7.4],[528508800000,7],[531187200000,7.1],[533779200000,7.1],[536457600000,6.9],[539136000000,6.6],[541555200000,6.6],[544233600000,7.1],[546825600000,6.6],[549504000000,6.5],[552096000000,6.5],[554774400000,6.4],[557452800000,6],[560044800000,6.3],[562723200000,6.2],[565315200000,6],[567993600000,6.2],[570672000000,6.3],[573177600000,6.4],[575856000000,5.9],[578448000000,5.9],[581126400000,5.8],[583718400000,6.1],[586396800000,5.9],[589075200000,5.7],[591667200000,5.6],[594345600000,5.7],[596937600000,5.9],[599616000000,5.6],[602294400000,5.4],[604713600000,5.4],[607392000000,5.4],[609984000000,5.3],[612662400000,5.4],[615254400000,5.6],[617932800000,5],[620611200000,4.9],[623203200000,4.9],[625881600000,4.8],[628473600000,4.9],[631152000000,5.1],[633830400000,5.3],[636249600000,5.1],[638928000000,4.8],[641520000000,5.2],[644198400000,5.2],[646790400000,5.4],[649468800000,5.4],[652147200000,5.6],[654739200000,5.8],[657417600000,5.7],[660009600000,5.9],[662688000000,6],[665366400000,6.2],[667785600000,6.7],[670464000000,6.6],[673056000000,6.4],[675734400000,6.9],[678326400000,7],[681004800000,7.3],[683683200000,6.8],[686275200000,7.2],[688953600000,7.5],[691545600000,7.8],[694224000000,8.1],[696902400000,8.2],[699408000000,8.3],[702086400000,8.5],[704678400000,8.8],[707356800000,8.7],[709948800000,8.6],[712627200000,8.8],[715305600000,8.6],[717897600000,9],[720576000000,9],[723168000000,9.3],[725846400000,8.6],[728524800000,8.5],[730944000000,8.5],[733622400000,8.4],[736214400000,8.1],[738892800000,8.3],[741484800000,8.2],[744163200000,8.2],[746841600000,8.3],[749433600000,8],[752112000000,8.3],[754704000000,8.3],[757382400000,8.6],[760060800000,9.2],[762480000000,9.3],[765158400000,9.1],[767750400000,9.2],[770428800000,9.3],[773020800000,9],[775699200000,8.9],[778377600000,9.2],[780969600000,10],[783648000000,9],[786240000000,8.7],[788918400000,8],[791596800000,8.1],[794016000000,8.3],[796694400000,8.3],[799286400000,9.1],[801964800000,7.9],[804556800000,8.5],[807235200000,8.3],[809913600000,7.9],[812505600000,8.2],[815184000000,8],[817776000000,8.3],[820454400000,8.3],[823132800000,7.8],[825638400000,8.3],[828316800000,8.6],[830908800000,8.6],[833587200000,8.3],[836179200000,8.3],[838857600000,8.4],[841536000000,8.5],[844128000000,8.3],[846806400000,7.7],[849398400000,7.8],[852076800000,7.8],[854755200000,8.1],[857174400000,7.9],[859852800000,8.3],[862444800000,8],[865123200000,8],[867715200000,8.3],[870393600000,7.8],[873072000000,8.2],[875664000000,7.7],[878342400000,7.6],[880934400000,7.5],[883612800000,7.4],[886291200000,7],[888710400000,6.8],[891388800000,6.7],[893980800000,6],[896659200000,6.9],[899251200000,6.7],[901929600000,6.8],[904608000000,6.7],[907200000000,5.8],[909878400000,6.6],[912470400000,6.8],[915148800000,6.9],[917827200000,6.8],[920246400000,6.8],[922924800000,6.2],[925516800000,6.5],[928195200000,6.3],[930787200000,5.8],[933465600000,6.5],[936144000000,6],[938736000000,6.1],[941414400000,6.2],[944006400000,5.8],[946684800000,5.8],[949363200000,6.1],[951868800000,6],[954547200000,6.1],[957139200000,5.8],[959817600000,5.7],[962409600000,6],[965088000000,6.3],[967766400000,5.2],[970358400000,6.1],[973036800000,6.1],[975628800000,6],[978307200000,5.8],[980985600000,6.1],[983404800000,6.6],[986083200000,5.9],[988675200000,6.3],[991353600000,6],[993945600000,6.8],[996624000000,6.9],[999302400000,7.2],[1001894400000,7.3],[1004572800000,7.7],[1007164800000,8.2],[1009843200000,8.4],[1012521600000,8.3],[1014940800000,8.4],[1017619200000,8.9],[1020211200000,9.5],[1022889600000,11],[1025481600000,8.9],[1028160000000,9],[1030838400000,9.5],[1033430400000,9.6],[1036108800000,9.3],[1038700800000,9.6],[1041379200000,9.6],[1044057600000,9.5],[1046476800000,9.7],[1049155200000,10.2],[1051747200000,9.9],[1054425600000,11.5],[1057017600000,10.3],[1059696000000,10.1],[1062374400000,10.2],[1064966400000,10.4],[1067644800000,10.3],[1070236800000,10.4],[1072915200000,10.6],[1075593600000,10.2],[1078099200000,10.2],[1080777600000,9.5],[1083369600000,9.9],[1086048000000,11],[1088640000000,8.9],[1091318400000,9.2],[1093996800000,9.6],[1096588800000,9.5],[1099267200000,9.7],[1101859200000,9.5],[1104537600000,9.4],[1107216000000,9.2],[1109635200000,9.3],[1112313600000,9],[1114905600000,9.1],[1117584000000,9],[1120176000000,8.8],[1122854400000,9.2],[1125532800000,8.4],[1128124800000,8.6],[1130803200000,8.5],[1133395200000,8.7],[1136073600000,8.6],[1138752000000,9.1],[1141171200000,8.7],[1143849600000,8.4],[1146441600000,8.5],[1149120000000,7.3],[1151712000000,8],[1154390400000,8.4],[1157068800000,8],[1159660800000,7.9],[1162339200000,8.3],[1164931200000,7.5],[1167609600000,8.3],[1170288000000,8.5],[1172707200000,9.1],[1175385600000,8.6],[1177977600000,8.2],[1180656000000,7.7],[1183248000000,8.7],[1185926400000,8.8],[1188604800000,8.7],[1191196800000,8.4],[1193875200000,8.6],[1196467200000,8.4],[1199145600000,9],[1201824000000,8.7],[1204329600000,8.7],[1207008000000,9.4],[1209600000000,7.9],[1212278400000,9],[1214870400000,9.7],[1217548800000,9.7],[1220227200000,10.2],[1222819200000,10.4],[1225497600000,9.8],[1228089600000,10.5],[1230768000000,10.7],[1233446400000,11.7],[1235865600000,12.3],[1238544000000,13.1],[1241136000000,14.2],[1243814400000,17.2],[1246406400000,16],[1249084800000,16.3],[1251763200000,17.8],[1254355200000,18.9],[1257033600000,19.8],[1259625600000,20.1],[1262304000000,20],[1264982400000,19.9],[1267401600000,20.4],[1270080000000,22.1],[1272672000000,22.3],[1275350400000,25.2],[1277942400000,22.3],[1280620800000,21],[1283299200000,20.3],[1285891200000,21.2],[1288569600000,21],[1291161600000,21.9],[1293840000000,21.5],[1296518400000,21.1],[1298937600000,21.5],[1301616000000,20.9],[1304208000000,21.6],[1306886400000,22.4],[1309478400000,22],[1312156800000,22.4],[1314835200000,22],[1317427200000,20.6],[1320105600000,20.8],[1322697600000,20.5],[1325376000000,20.8],[1328054400000,19.7],[1330560000000,19.2],[1333238400000,19.1],[1335830400000,19.9],[1338508800000,20.4],[1341100800000,17.5],[1343779200000,18.4],[1346457600000,18.8],[1349049600000,19.9],[1351728000000,18.6],[1354320000000,17.7],[1356998400000,15.8],[1359676800000,17.2],[1362096000000,17.6],[1364774400000,17.1],[1367366400000,17.1],[1370044800000,17],[1372636800000,16.2],[1375315200000,16.5],[1377993600000,16.5],[1380585600000,16.3],[1383264000000,17.1],[1385856000000,17.3],[1388534400000,15.4],[1391212800000,15.9],[1393632000000,15.8],[1396310400000,15.7],[1398902400000,14.6],[1401580800000,13.8],[1404172800000,13.1],[1406851200000,12.9],[1409529600000,13.4],[1412121600000,13.6],[1414800000000,13],[1417392000000,12.9],[1420070400000,13.2],[1422748800000,12.9],[1425168000000,12],[1427846400000,11.5]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":1,\"dashArray\":4},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]} data(\"economics_long\", package = \"ggplot2\") apex( data = economics_long, mapping = aes(x = date, y = value01, group = variable), type = \"line\" ) %>% ax_stroke( width = c(1, 2, 3, 4, 5), dashArray = c(1, 2, 3, 4, 5) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"pce\",\"type\":\"line\",\"data\":[[-79056000000,0],[-76377600000,0.000265249719776508],[-73699200000,0.000761523389035778],[-71107200000,0.000470604341538967],[-68428800000,0.000915539355357616],[-65836800000,0.00157438543351217],[-63158400000,0.00207065910277143],[-60480000000,0.0023016830522542],[-57974400000,0.00321722240761181],[-55296000000,0.00319155307989151],[-52704000000,0.00368782674915077],[-50025600000,0.00424399551642409],[-47433600000,0.00483439005399116],[-44755200000,0.00515953487178171],[-42076800000,0.00526221218266294],[-39484800000,0.00555313123015975],[-36806400000,0.00598950980140497],[-34214400000,0.0059723969162581],[-31536000000,0.0065713478963986],[-28857600000,0.00701628291021725],[-26438400000,0.00703339579536412],[-23760000000,0.0074612179240359],[-21168000000,0.00800883024873578],[-18489600000,0.0080601689041764],[-15897600000,0.00821418487049825],[-13219200000,0.00883024873578561],[-10540800000,0.00911261134070899],[-7948800000,0.00956610279710108],[-5270400000,0.00973723164856979],[-2678400000,0.00993402982775881],[0,0.0104388599395915],[2678400000,0.0108923513959836],[5097600000,0.0107468918722352],[7776000000,0.0110634802474523],[10368000000,0.0116110925721522],[13046400000,0.0119447938325162],[15638400000,0.0121330355691318],[18316800000,0.0125095190423629],[20995200000,0.013040018481916],[23587200000,0.0129715669413285],[26265600000,0.0128261074175801],[28857600000,0.0135961872491893],[31536000000,0.0144946137194],[34214400000,0.0147769763243234],[36633600000,0.0149994438312327],[39312000000,0.0155812819262264],[41904000000,0.0157780801054154],[44582400000,0.0165224906093043],[47174400000,0.0164454826261434],[49852800000,0.0169588691805495],[52531200000,0.0176519410289978],[55123200000,0.017891521421054],[57801600000,0.0183278999922992],[60393600000,0.0189696331853069],[63072000000,0.0192348829050834],[65750400000,0.0196370357060349],[68256000000,0.0207493732405815],[70934400000,0.0210317358455049],[73526400000,0.0215023401870438],[76204800000,0.0218103721196875],[78796800000,0.0225205568532827],[81475200000,0.0230681691779826],[84153600000,0.0234788784215075],[86745600000,0.0246596674966416],[89424000000,0.025138828280754],[92016000000,0.0256179890648664],[94694400000,0.0265078590925037],[97372800000,0.0273036082518332],[99792000000,0.0279025592319737],[102470400000,0.0281506960666034],[105062400000,0.0286555261784361],[107740800000,0.0288865501279188],[110332800000,0.0297250815001155],[113011200000,0.029656629959528],[115689600000,0.0310171043287043],[118281600000,0.0309315399029699],[120960000000,0.0316759504068588],[123552000000,0.0316502810791385],[126230400000,0.03232624004244],[128908800000,0.0327711750562586],[131328000000,0.0337722788373506],[134006400000,0.0345765844392535],[136598400000,0.0355691317777721],[139276800000,0.0360482925618845],[141868800000,0.0368953803766546],[144547200000,0.0383414191715652],[147225600000,0.0383670884992855],[149817600000,0.0387179026447964],[152496000000,0.0384612093675933],[155088000000,0.0389403701517057],[157766400000,0.0401211592268399],[160444800000,0.041301948301974],[162864000000,0.0414046256128552],[165542400000,0.0417811090860864],[168134400000,0.0438260988611375],[170812800000,0.0445020578244389],[173404800000,0.0456143953589855],[176083200000,0.0462304592242729],[178761600000,0.0468978617450009],[181353600000,0.0474198047419805],[184032000000,0.0486947146854224],[186624000000,0.0500894148248924],[189302400000,0.0513728812109077],[191980800000,0.0514242198663484],[194486400000,0.0520402837316357],[197164800000,0.0529387102018465],[199756800000,0.0527076862523637],[202435200000,0.0542307330304353],[205027200000,0.0550093693046179],[207705600000,0.0557281104807865],[210384000000,0.0566522062787176],[212976000000,0.0573367216845924],[215654400000,0.0583806076785516],[218246400000,0.0603058072575746],[220924800000,0.0606052827476448],[223603200000,0.0619999828871149],[226022400000,0.0625989338672553],[228700800000,0.0633690136988646],[231292800000,0.0642075450710612],[233971200000,0.0647637138383346],[236563200000,0.0662097526332452],[239241600000,0.0666546876470639],[241920000000,0.0674076545935262],[244512000000,0.0688536933884368],[247190400000,0.0701884984298928],[249782400000,0.070958578261502],[252460800000,0.0704024094942287],[255139200000,0.0725928587930282],[257558400000,0.0745095019294778],[260236800000,0.0761266695758572],[262828800000,0.0774614746173131],[265507200000,0.0786422636924472],[268099200000,0.0787278281181816],[270777600000,0.0804562295180156],[273456000000,0.0809610596298483],[276048000000,0.0821589615901293],[278726400000,0.08333119422269],[281318400000,0.0846916685918662],[283996800000,0.085196498703699],[286675200000,0.086514190860008],[289094400000,0.0876607541648484],[291772800000,0.0882768180301358],[294364800000,0.0900223323151167],[297043200000,0.0914683711100273],[299635200000,0.0923582411376646],[302313600000,0.0948823916968281],[304992000000,0.0964482206877669],[307584000000,0.0971070667659214],[310262400000,0.0984504282499508],[312854400000,0.09922050808156],[315532800000,0.101873005279325],[318211200000,0.102223819424836],[320716800000,0.10280565751983],[323395200000,0.101693319985283],[325987200000,0.102112585671381],[328665600000,0.103712640432614],[331257600000,0.106134113680896],[333936000000,0.10756303959066],[336614400000,0.108991965500424],[339206400000,0.112123623482301],[341884800000,0.112953598411924],[344476800000,0.11508415261271],[347155200000,0.116649981603648],[349833600000,0.117864996449076],[352252800000,0.119465051210309],[354931200000,0.11959339784891],[357523200000,0.120397703450813],[360201600000,0.122168887063514],[362793600000,0.122819176699096],[365472000000,0.124915505129587],[368150400000,0.12482138426128],[370742400000,0.124684481180105],[373420800000,0.125257762832525],[376012800000,0.12681503538089],[378691200000,0.127525220114485],[381369600000,0.129587322774683],[383788800000,0.129835459609313],[386467200000,0.130023701345928],[389059200000,0.131580973894294],[391737600000,0.131889005826937],[394329600000,0.133951108487135],[397008000000,0.134627067450437],[399686400000,0.136723395880929],[402278400000,0.138537361706497],[404956800000,0.140548125711254],[407548800000,0.141600568147787],[410227200000,0.142661567026893],[412905600000,0.142918260304096],[415324800000,0.145125822488042],[418003200000,0.147145142935373],[420595200000,0.148813649237193],[423273600000,0.151389138451797],[425865600000,0.153819168142653],[428544000000,0.155188198954403],[431222400000,0.156428883127551],[433814400000,0.158371195591721],[436492800000,0.15911560609561],[439084800000,0.161451514918158],[441763200000,0.163659077102104],[444441600000,0.162298602732928],[446947200000,0.164702963096063],[449625600000,0.166919081722583],[452217600000,0.168373676960067],[454896000000,0.170179086343062],[457488000000,0.170093521917328],[460166400000,0.171599455810252],[462844800000,0.173447647406114],[465436800000,0.173233736341779],[468115200000,0.176664869813726],[470707200000,0.177623191381951],[473385600000,0.180720623593535],[476064000000,0.182603040959691],[478483200000,0.183261887037845],[481161600000,0.184203095720923],[483753600000,0.187360423030521],[486432000000,0.18676147205038],[489024000000,0.189011816447194],[491702400000,0.192126361543925],[494380800000,0.195771406080208],[496972800000,0.192442949919142],[499651200000,0.193752085632877],[502243200000,0.197191775547398],[504921600000,0.198543693474001],[507600000000,0.197953298936434],[510019200000,0.198244217983931],[512697600000,0.19923676532245],[515289600000,0.201144852016326],[517968000000,0.20150422260441],[520560000000,0.20317272890623],[523238400000,0.204661549914008],[525916800000,0.210924865877763],[528508800000,0.207596409716696],[531187200000,0.207211369800892],[533779200000,0.213089645848842],[536457600000,0.207818877223606],[539136000000,0.21348324220722],[541555200000,0.214475789545739],[544233600000,0.216657682401965],[546825600000,0.217479100889014],[549504000000,0.219566872876933],[552096000000,0.221440733800515],[554774400000,0.224529609569525],[557452800000,0.224161682538868],[560044800000,0.224846197944743],[562723200000,0.225676172874366],[565315200000,0.228234549203823],[567993600000,0.231622900462904],[570672000000,0.232281746541058],[573177600000,0.235627315587271],[575856000000,0.235841226651607],[578448000000,0.238459498079079],[581126400000,0.240590052279864],[583718400000,0.242660711382636],[586396800000,0.244825491353715],[589075200000,0.245424442333855],[591667200000,0.248735785609775],[594345600000,0.250147598634392],[596937600000,0.252671749193555],[599616000000,0.25472529541118],[602294400000,0.255093222441838],[604713600000,0.256017318239769],[607392000000,0.259799265857227],[609984000000,0.26055223280369],[612662400000,0.261818586304558],[615254400000,0.263452866836084],[617932800000,0.266439065294213],[620611200000,0.266550299047668],[623203200000,0.26755140282876],[625881600000,0.268381377758383],[628473600000,0.271880962770918],[631152000000,0.275859708567566],[633830400000,0.27564579750323],[636249600000,0.277930367670337],[638928000000,0.279222390498926],[641520000000,0.279718664168186],[644198400000,0.282174363186762],[646790400000,0.283646071309392],[649468800000,0.285922085033926],[652147200000,0.287787389514935],[654739200000,0.287830171727803],[657417600000,0.287941405481257],[660009600000,0.287034422568473],[662688000000,0.285297464726066],[665366400000,0.287496470467438],[667785600000,0.291458103378939],[670464000000,0.290953273267107],[673056000000,0.293186504778773],[675734400000,0.293811125086634],[678326400000,0.29599301794286],[681004800000,0.296258267662637],[683683200000,0.297593072704093],[686275200000,0.296848662200204],[688953600000,0.299210240350472],[691545600000,0.300656279145383],[694224000000,0.306149515277528],[696902400000,0.307415868778397],[699408000000,0.308913246228748],[702086400000,0.310153930401896],[704678400000,0.31245561345415],[707356800000,0.314055668215383],[709948800000,0.316425802808225],[712627200000,0.317803390062548],[715305600000,0.32074680630781],[717897600000,0.3232624004244],[720576000000,0.324614318351002],[723168000000,0.327686081234866],[725846400000,0.328054008265524],[728524800000,0.329303248881245],[730944000000,0.329063668489189],[733622400000,0.332563253501724],[736214400000,0.33504462184802],[738892800000,0.336550555740945],[741484800000,0.339023367644668],[744163200000,0.340067253638627],[746841600000,0.342668412180952],[749433600000,0.344490934449094],[752112000000,0.346313456717235],[754704000000,0.347768051954719],[757382400000,0.348965953915],[760060800000,0.353030264137382],[762480000000,0.354176827442223],[765158400000,0.356324494528155],[767750400000,0.35618759144698],[770428800000,0.359558829820914],[773020800000,0.360559933602006],[775699200000,0.364153639482849],[778377600000,0.365214638361955],[780969600000,0.368457530097287],[783648000000,0.369544198304113],[786240000000,0.370913229115863],[788918400000,0.371734647602913],[791596800000,0.371700421832619],[794016000000,0.374660950963028],[796694400000,0.375071660206553],[799286400000,0.378742374070556],[801964800000,0.382541434573162],[804556800000,0.381916814265301],[807235200000,0.384920125608577],[809913600000,0.386220704879739],[812505600000,0.385655979669892],[815184000000,0.389224016223015],[817776000000,0.392809165661285],[820454400000,0.391799505437619],[823132800000,0.395829589889708],[825638400000,0.399294949131949],[828316800000,0.402264034704931],[830908800000,0.403615952631534],[833587200000,0.40412933918594],[836179200000,0.406020312994669],[838857600000,0.407996851229133],[841536000000,0.409845042824995],[844128000000,0.412574548005921],[846806400000,0.414516860470091],[849398400000,0.416861325735212],[852076800000,0.419642169571579],[854755200000,0.421601594920896],[857174400000,0.42332999632073],[859852800000,0.423766374891975],[862444800000,0.423843382875136],[865123200000,0.426752573350104],[867715200000,0.4314243909952],[870393600000,0.434692952058252],[873072000000,0.435950749116547],[875664000000,0.439031068442984],[878342400000,0.441033276005168],[880934400000,0.443685773202933],[883612800000,0.443497531466318],[886291200000,0.446398165498712],[888710400000,0.448665622780673],[891388800000,0.451899958073431],[893980800000,0.456161066475002],[896659200000,0.459053144064824],[899251200000,0.460618973055762],[901929600000,0.463613727956465],[904608000000,0.46708764364128],[907200000000,0.46992838257566],[909878400000,0.471348752042851],[912470400000,0.476063351900814],[915148800000,0.476268706522576],[917827200000,0.478741518426299],[920246400000,0.481402572066638],[922924800000,0.486818800215622],[925516800000,0.489342950774786],[928195200000,0.491764424023068],[930787200000,0.494117445730763],[933465600000,0.497967844888809],[936144000000,0.502442864354716],[938736000000,0.504436515474327],[941414400000,0.507499721915616],[944006400000,0.51612461602964],[946684800000,0.515833696982143],[949363200000,0.523055334514122],[951868800000,0.528711143055164],[954547200000,0.527453345996868],[957139200000,0.530576447536173],[959817600000,0.53368243619033],[962409600000,0.535410837590164],[965088000000,0.538405592490866],[967766400000,0.545575891367405],[970358400000,0.546029382823797],[973036800000,0.547244397669225],[975628800000,0.550949337303523],[978307200000,0.553627503829008],[980985600000,0.555236115032814],[983404800000,0.554560156069513],[986083200000,0.55569816293178],[988675200000,0.559625570072987],[991353600000,0.560789246262974],[993945600000,0.561773237158919],[996624000000,0.56491345158337],[999302400000,0.556690710270298],[1001894400000,0.573427111943938],[1004572800000,0.569961752701697],[1007164800000,0.568233351301863],[1009843200000,0.570509365026397],[1012521600000,0.574274199758708],[1014940800000,0.575891367405088],[1017619200000,0.581726861240171],[1020211200000,0.579784548776001],[1022889600000,0.582822085889571],[1025481600000,0.588144193170248],[1028160000000,0.589949602553243],[1030838400000,0.589051176083032],[1033430400000,0.592448083784686],[1036108800000,0.594929452130982],[1038700800000,0.599472923137476],[1041379200000,0.601209880979884],[1044057600000,0.60144946137194],[1046476800000,0.606797237980337],[1049155200000,0.608730994001934],[1051747200000,0.609338501424648],[1054425600000,0.613659504924233],[1057017600000,0.618759144698],[1059696000000,0.626998998896219],[1062374400000,0.627041781109086],[1064966400000,0.627957320464444],[1067644800000,0.632569243011526],[1070236800000,0.635101950013263],[1072915200000,0.640081799591002],[1075593600000,0.642854086984795],[1078099200000,0.647662807711066],[1080777600000,0.648740919475319],[1083369600000,0.655124025635102],[1086048000000,0.653754994823352],[1088640000000,0.659889964148506],[1091318400000,0.662816267508621],[1093996800000,0.668634648458557],[1096588800000,0.673212345235345],[1099267200000,0.677148308819125],[1101859200000,0.682359182346348],[1104537600000,0.68139230433555],[1107216000000,0.686440605453877],[1109635200000,0.689888851810971],[1112313600000,0.696400304609356],[1114905600000,0.696254845085607],[1117584000000,0.703177007127517],[1120176000000,0.712135602501904],[1122854400000,0.712383739336533],[1125532800000,0.716952879670748],[1128124800000,0.72044390824071],[1130803200000,0.721462124906949],[1133395200000,0.724123178547287],[1136073600000,0.731841089748526],[1138752000000,0.734433691848277],[1141171200000,0.737171753471777],[1143849600000,0.741680998707977],[1146441600000,0.745129245065072],[1149120000000,0.747328250806445],[1151712000000,0.754327420831515],[1154390400000,0.754258969290928],[1157068800000,0.757074038897588],[1159660800000,0.758656980773674],[1162339200000,0.759255931753814],[1164931200000,0.766854052759025],[1167609600000,0.77090125009626],[1170288000000,0.773510965081158],[1172707200000,0.776788082586784],[1175385600000,0.779406354014255],[1177977600000,0.782452447570398],[1180656000000,0.783821478382148],[1183248000000,0.787440853590711],[1185926400000,0.791231357650743],[1188604800000,0.794996192383055],[1191196800000,0.797486117171925],[1193875200000,0.803544078513917],[1196467200000,0.804451061426701],[1199145600000,0.806299253022563],[1201824000000,0.804878883555373],[1204329600000,0.808814847139153],[1207008000000,0.812014956661618],[1209600000000,0.816892128928477],[1212278400000,0.821521164360705],[1214870400000,0.821247358198356],[1217548800000,0.820391713941012],[1220227200000,0.816010815343413],[1222819200000,0.808891855122314],[1225497600000,0.796955617732372],[1228089600000,0.789246262973706],[1230768000000,0.7937897339802],[1233446400000,0.792266687202129],[1235865600000,0.788202376979747],[1238544000000,0.788741432861873],[1241136000000,0.790803535522071],[1243814400000,0.795766272214664],[1246406400000,0.79874391423022],[1249084800000,0.808951750220328],[1251763200000,0.802311950783342],[1254355200000,0.806461825431459],[1257033600000,0.807197679492774],[1259625600000,0.81219464195566],[1262304000000,0.81244277879029],[1264982400000,0.81490703425144],[1267401600000,0.8199125531569],[1270080000000,0.821948986489377],[1272672000000,0.823497702595169],[1275350400000,0.82524321688015],[1277942400000,0.828092512257104],[1280620800000,0.831814564776549],[1283299200000,0.833594304831823],[1285891200000,0.838360243345227],[1288569600000,0.842638464631945],[1291161600000,0.84583857415441],[1293840000000,0.849552070231281],[1296518400000,0.852512599361689],[1298937600000,0.859391979190732],[1301616000000,0.862566419385476],[1304208000000,0.864654191373395],[1306886400000,0.866776189131607],[1309478400000,0.870258661258995],[1312156800000,0.872235199493459],[1314835200000,0.875443865458497],[1317427200000,0.876727331844512],[1320105600000,0.877274944169212],[1322697600000,0.878361612376039],[1325376000000,0.886053854249557],[1328054400000,0.893874442761677],[1330560000000,0.893728983237929],[1333238400000,0.896116230715918],[1335830400000,0.895166465590266],[1338508800000,0.89325837889639],[1341100800000,0.895902319651582],[1343779200000,0.898204002703836],[1346457600000,0.903115400740988],[1349049600000,0.906392518246614],[1351728000000,0.909558401998785],[1354320000000,0.909874990374002],[1356998400000,0.915205654097253],[1359676800000,0.918354424964277],[1362096000000,0.917284869642597],[1364774400000,0.915428121604162],[1367366400000,0.918782247092949],[1370044800000,0.92085290619572],[1372636800000,0.923240153673709],[1375315200000,0.926020997510075],[1377993600000,0.92924677636026],[1380585600000,0.933773134481608],[1383264000000,0.939574402546397],[1385856000000,0.942167004646148],[1388534400000,0.941704956747183],[1391212800000,0.946299766409118],[1393632000000,0.952871114305516],[1396310400000,0.957970754079284],[1398902400000,0.961889604777918],[1401580800000,0.967759324383294],[1404172800000,0.971481376902739],[1406851200000,0.978651675779278],[1409529600000,0.979772569756398],[1412121600000,0.985385596084572],[1414800000000,0.987815625775428],[1417392000000,0.988722608688212],[1420070400000,0.987353577876462],[1422748800000,0.990468122973193],[1425168000000,0.99696246288643],[1427846400000,1]]},{\"name\":\"pop\",\"type\":\"line\",\"data\":[[-79056000000,0],[-76377600000,0.00163529885435811],[-73699200000,0.00329525045526433],[-71107200000,0.00492233172743973],[-68428800000,0.00645901959560539],[-65836800000,0.00776561516265533],[-63158400000,0.00900647007224364],[-60480000000,0.0099268392767065],[-57974400000,0.0110444304535542],[-55296000000,0.0122935029453253],[-52704000000,0.013550793019279],[-50025600000,0.0149888699012522],[-47433600000,0.0163858588723119],[-44755200000,0.0179636346513911],[-42076800000,0.0195824983413838],[-39484800000,0.021184926867011],[-36806400000,0.022631221331167],[-34214400000,0.0239049465694861],[-31536000000,0.025047190492882],[-28857600000,0.0260415179369891],[-26438400000,0.0272084146069331],[-23760000000,0.0283424409481463],[-21168000000,0.029739429919206],[-18489600000,0.0311857243833619],[-15897600000,0.0325827133544216],[-13219200000,0.0342262297909624],[-10540800000,0.0359765747958783],[-7948800000,0.0377187022186116],[-5270400000,0.039345783490787],[-2678400000,0.0407838603727602],[0,0.0422137196725507],[2678400000,0.0435203152396007],[5097600000,0.0447365174026409],[7776000000,0.0467498250374034],[10368000000,0.0484426469670404],[13046400000,0.0502751677937834],[15638400000,0.0520994710383437],[18316800000,0.0540963435087408],[20995200000,0.0561096511435033],[23587200000,0.0581476115248139],[26265600000,0.060086960919932],[28857600000,0.0618455235070307],[31536000000,0.0637191322446872],[34214400000,0.0653790838455934],[36633600000,0.0669157717137591],[39312000000,0.068641463972127],[41904000000,0.0702438924977542],[44582400000,0.0719038440986605],[47174400000,0.0735391429530186],[49852800000,0.0753470110332135],[52531200000,0.0772617076817835],[55123200000,0.0791599691659882],[57801600000,0.080885661424356],[60393600000,0.0824059141281562],[63072000000,0.0838604261744949],[65750400000,0.0850437580088042],[68256000000,0.0862846129183926],[70934400000,0.0877144722181831],[73526400000,0.089021067785233],[76204800000,0.0905002325781197],[78796800000,0.0919054391313621],[81475200000,0.0933763863420662],[84153600000,0.0950445555251551],[86745600000,0.0966962895438786],[89424000000,0.0981508015902172],[92016000000,0.0995067026503634],[94694400000,0.100854386128327],[97372800000,0.101963759722992],[99792000000,0.103064915735474],[102470400000,0.104429034377803],[105062400000,0.105719194780488],[107740800000,0.107107966169365],[110332800000,0.108447432065145],[113011200000,0.10995124960458],[115689600000,0.111570113294573],[118281600000,0.113098583580556],[120960000000,0.114405179147606],[123552000000,0.115646034057194],[126230400000,0.116854018638052],[128908800000,0.118020915307996],[131328000000,0.119146724067026],[134006400000,0.120379361394432],[136598400000,0.121628433886203],[139276800000,0.12305007560381],[141868800000,0.124430629410505],[144547200000,0.125975534860853],[147225600000,0.127651921626125],[149817600000,0.129336525973579],[152496000000,0.13076638527337],[155088000000,0.132056545676054],[157766400000,0.133280965421277],[160444800000,0.134382121433759],[162864000000,0.135475059864059],[165542400000,0.136748785102378],[168134400000,0.138145774073438],[170812800000,0.1401590817082],[173404800000,0.141843686055655],[176083200000,0.143667989300215],[178761600000,0.14529507057239],[181353600000,0.146889281515835],[184032000000,0.148401316637452],[186624000000,0.149716129786685],[189302400000,0.151063813264649],[191980800000,0.152329320920785],[194486400000,0.153414041768902],[197164800000,0.154622026349759],[199756800000,0.155912186752444],[202435200000,0.1573584812166],[205027200000,0.15878834051639],[207705600000,0.160415421788566],[210384000000,0.162116461300386],[212976000000,0.163792848065657],[215654400000,0.165354188680371],[218246400000,0.166767612815796],[220924800000,0.168189254533404],[223603200000,0.16954515559355],[226022400000,0.170859968742783],[228700800000,0.172339133535669],[231292800000,0.173777210417643],[233971200000,0.175313898285808],[236563200000,0.17689989164707],[239241600000,0.178699542145082],[241920000000,0.180589586047104],[244512000000,0.182364583798568],[247190400000,0.184049188146023],[249782400000,0.185643399089467],[252460800000,0.187073258389258],[255139200000,0.188322330881029],[257558400000,0.18966179677681],[260236800000,0.191297095631168],[262828800000,0.192817348334968],[265507200000,0.194485517518057],[268099200000,0.196178339447694],[270777600000,0.197986207527889],[273456000000,0.200024167909199],[276048000000,0.201815600825029],[278726400000,0.203508422754666],[281318400000,0.205094416115928],[283996800000,0.206696844641555],[286675200000,0.208241750091903],[289094400000,0.209737350049156],[291772800000,0.211405519232244],[294364800000,0.212999730175689],[297043200000,0.21473364001624],[299635200000,0.216475767438973],[302313600000,0.218447987162822],[304992000000,0.220518817872863],[307584000000,0.22260608374727],[310262400000,0.224463257320561],[312854400000,0.226238255072025],[315532800000,0.227947512166028],[318211200000,0.229632116513482],[320716800000,0.231218109874744],[323395200000,0.232960237297477],[325987200000,0.234521577912191],[328665600000,0.236748542683704],[331257600000,0.238424929448975],[333936000000,0.240290320604449],[336614400000,0.242205017253019],[339206400000,0.244103278737224],[341884800000,0.245705707262851],[344476800000,0.247078043487363],[347155200000,0.24837642147223],[349833600000,0.249477577484712],[352252800000,0.250734867558666],[354931200000,0.25220581476937],[357523200000,0.253619238904795],[360201600000,0.255147709190778],[362793600000,0.256832313538232],[365472000000,0.25864839920061],[368150400000,0.260497355191718],[370742400000,0.262379181511558],[373420800000,0.263866563886627],[376012800000,0.265238900111139],[378691200000,0.266619453917833],[381369600000,0.267901396738335],[383788800000,0.269191557141019],[386467200000,0.270629634022993],[389059200000,0.271977317500956],[391737600000,0.273481135040391],[394329600000,0.275091781148201],[397008000000,0.276768167913473],[399686400000,0.278469207425292],[402278400000,0.280252422758939],[404956800000,0.281706934805278],[407548800000,0.283079271029789],[410227200000,0.284410519343387],[412905600000,0.285651374252976],[415324800000,0.286801835758554],[418003200000,0.288182389565248],[420595200000,0.28934106865301],[423273600000,0.29095171476082],[425865600000,0.292504837793351],[428544000000,0.294099048736795],[431222400000,0.295742565173336],[433814400000,0.297435387102973],[436492800000,0.298840593656216],[439084800000,0.3001307540589],[441763200000,0.301363391386306],[444441600000,0.30253028805625],[446947200000,0.30374649021929],[449625600000,0.305094173697253],[452217600000,0.30635968135339],[454896000000,0.307732017577901],[457488000000,0.30927692302825],[460166400000,0.310928657046973],[462844800000,0.312662566887524],[465436800000,0.314437564638988],[468115200000,0.315941382178423],[470707200000,0.317231542581107],[473385600000,0.318480615072878],[476064000000,0.319581771085361],[478483200000,0.320650056769112],[481161600000,0.322030610575806],[483753600000,0.323460469875597],[486432000000,0.325071115983407],[489024000000,0.326681762091217],[491702400000,0.328432107096133],[494380800000,0.330231757594145],[496972800000,0.331998537763426],[499651200000,0.333592748706871],[502243200000,0.334989737677931],[504921600000,0.336312768409346],[507600000000,0.337545405736752],[510019200000,0.33869586724233],[512697600000,0.340059985884659],[515289600000,0.341514497930998],[517968000000,0.343059403381346],[520560000000,0.344637179160425],[523238400000,0.346305348343514],[525916800000,0.348063910930613],[528508800000,0.34975673286025],[531187200000,0.351342726221512],[533779200000,0.352600016295466],[536457600000,0.353947699773429],[539136000000,0.355147466772104],[541555200000,0.356371886517327],[544233600000,0.357793528234934],[546825600000,0.359198734788177],[549504000000,0.360718987491977],[552096000000,0.362329633599787],[554774400000,0.36403889069379],[557452800000,0.36577280053434],[560044800000,0.367605321361083],[562723200000,0.369191314722345],[565315200000,0.370588303693405],[567993600000,0.37200172782883],[570672000000,0.373234365156235],[573177600000,0.374450567319276],[575856000000,0.375814685961604],[578448000000,0.377170587021751],[581126400000,0.378781233129561],[583718400000,0.380548013298842],[586396800000,0.382347663796854],[589075200000,0.38418840220578],[591667200000,0.386070228525619],[594345600000,0.387639786722516],[596937600000,0.389053210857941],[599616000000,0.390433764664635],[602294400000,0.391699272320771],[604713600000,0.392948344812542],[607392000000,0.394517903009439],[609984000000,0.396038155713239],[612662400000,0.397747412807242],[615254400000,0.399621021544898],[617932800000,0.401519283029103],[620611200000,0.4035161554995],[623203200000,0.405578768627359],[625881600000,0.407337331214457],[628473600000,0.408964412486633],[631152000000,0.410443577279519],[633830400000,0.411824131086214],[636249600000,0.413344383790014],[638928000000,0.415760352951729],[641520000000,0.417888706737049],[644198400000,0.420222500076937],[646790400000,0.422548075834642],[649468800000,0.425070873564733],[652147200000,0.427634759205736],[654739200000,0.430149339353644],[657417600000,0.432524220604445],[660009600000,0.434825143615602],[662688000000,0.436986367729653],[665366400000,0.439007892946599],[667785600000,0.4409554599239],[670464000000,0.443182424695412],[673056000000,0.445401171884742],[675734400000,0.447817141046457],[678326400000,0.450167369550711],[681004800000,0.45274769035608],[683683200000,0.455369099072362],[686275200000,0.457908331966818],[688953600000,0.460233907724523],[691545600000,0.462255432941468],[694224000000,0.464309828487144],[696902400000,0.466232742717897],[699408000000,0.468328226174487],[702086400000,0.470703107425288],[704678400000,0.47311085900482],[707356800000,0.475609003988362],[709948800000,0.478115366554087],[712627200000,0.480892909331841],[715305600000,0.483489665301576],[717897600000,0.486061768524762],[720576000000,0.488411997029015],[723168000000,0.490597873889615],[725846400000,0.492783750750214],[728524800000,0.494755970474063],[730944000000,0.496670667122633],[733622400000,0.498823673654501],[736214400000,0.501009550515101],[738892800000,0.503335126272806],[741484800000,0.505734660270156],[744163200000,0.508290328328976],[746841600000,0.51076382056597],[749433600000,0.513196224892051],[752112000000,0.515349231423919],[754704000000,0.517395409387413],[757382400000,0.519408717022175],[760060800000,0.521085103787447],[762480000000,0.522966930107286],[765158400000,0.52525963553626],[767750400000,0.527281160753206],[770428800000,0.529540995853449],[773020800000,0.531874789193337],[775699200000,0.534241452861956],[778377600000,0.536649204441488],[780969600000,0.538982997781376],[783648000000,0.541103133984514],[786240000000,0.543116441619276],[788918400000,0.545088661343125],[791596800000,0.546945834916416],[794016000000,0.548794790907525],[796694400000,0.550931362275028],[799286400000,0.552928234745425],[801964800000,0.55516341709912],[804556800000,0.557521863185557],[807235200000,0.55987209168981],[809913600000,0.562411324584265],[812505600000,0.564909469567807],[815184000000,0.567037823353128],[817776000000,0.568911432090784],[820454400000,0.570620689184787],[823132800000,0.572371034189703],[825638400000,0.574269295673907],[828316800000,0.576389431877045],[830908800000,0.578484915333635],[833587200000,0.580769403180426],[836179200000,0.583078543773766],[838857600000,0.585617776668222],[841536000000,0.588148791980495],[844128000000,0.590589413888758],[846806400000,0.593030035797021],[849398400000,0.595059778596149],[852076800000,0.596990910409084],[854755200000,0.598839866400192],[857174400000,0.600779215795311],[859852800000,0.602932222327179],[862444800000,0.605060576112499],[865123200000,0.607361499123657],[867715200000,0.609744597956641],[870393600000,0.61241531216602],[873072000000,0.615012068135754],[875664000000,0.617469125208383],[878342400000,0.619720742726444],[880934400000,0.621742267943389],[883612800000,0.623829533817795],[886291200000,0.625571661240529],[888710400000,0.627289135916714],[891388800000,0.629401054537669],[893980800000,0.631537625905172],[896659200000,0.633772808258867],[899251200000,0.636065513687842],[901929600000,0.638555441089201],[904608000000,0.640987845415282],[907200000000,0.643362726666083],[909878400000,0.645614344184144],[912470400000,0.647660522147637],[915148800000,0.649829963843871],[917827200000,0.651489915444777],[920246400000,0.653182737374414],[922924800000,0.655261785666639],[925516800000,0.657447662527238],[928195200000,0.659781455867126],[930787200000,0.662197425028841],[933465600000,0.664720222758931],[936144000000,0.667193714995925],[938736000000,0.669658989650736],[941414400000,0.671861301675701],[944006400000,0.673874609310463],[946684800000,0.676011180677966],[949363200000,0.677769743265065],[951868800000,0.679569393763077],[954547200000,0.681574483815657],[957139200000,0.683415222224583],[959817600000,0.685461400188076],[962409600000,0.687589753973396],[965088000000,0.689792065998361],[967766400000,0.692084771427335],[970358400000,0.694295301034483],[973036800000,0.696366131744524],[975628800000,0.698363004214921],[978307200000,0.700203742623847],[980985600000,0.701986957957494],[983404800000,0.70373730296241],[986083200000,0.705635564446614],[988675200000,0.707517390766454],[991353600000,0.709588221476495],[993945600000,0.711617964275623],[996624000000,0.713762753225309],[999302400000,0.716006153161187],[1001894400000,0.718101636617776],[1004572800000,0.720098509088174],[1007164800000,0.721980335408013],[1009843200000,0.723771768323842],[1012521600000,0.725464590253479],[1014940800000,0.727075236361289],[1017619200000,0.728776275873109],[1020211200000,0.7306334494464],[1022889600000,0.732613886752432],[1025481600000,0.734594324058463],[1028160000000,0.736689807515053],[1030838400000,0.738809943718191],[1033430400000,0.740880774428232],[1036108800000,0.74282012382335],[1038700800000,0.74452116333517],[1041379200000,0.746205767682624],[1044057600000,0.747816413790434],[1046476800000,0.749435277480427],[1049155200000,0.751193840067526],[1051747200000,0.753009925729903],[1054425600000,0.754965710289387],[1057017600000,0.756905059684505],[1059696000000,0.758975890394546],[1062374400000,0.76102206835804],[1064966400000,0.763101116650264],[1067644800000,0.765015813298834],[1070236800000,0.766667547317557],[1072915200000,0.768179582439175],[1075593600000,0.769625876903331],[1078099200000,0.771211870264593],[1080777600000,0.773003303180422],[1083369600000,0.774794736096252],[1086048000000,0.776651909669543],[1088640000000,0.778624129393392],[1091318400000,0.780727830432164],[1093996800000,0.782798661142205],[1096588800000,0.784927014927526],[1099267200000,0.786866364322644],[1101859200000,0.7887399730603],[1104537600000,0.790547841140495],[1107216000000,0.792117399337392],[1109635200000,0.793612999294644],[1112313600000,0.795281168477733],[1114905600000,0.797039731064832],[1117584000000,0.798946210131219],[1120176000000,0.801000605676895],[1122854400000,0.803087871551302],[1125532800000,0.805281965994084],[1128124800000,0.8074596252725],[1130803200000,0.809390757085436],[1133395200000,0.811231495494361],[1136073600000,0.813006493245826],[1138752000000,0.814707532757645],[1141171200000,0.816400354687282],[1143849600000,0.81821644034966],[1146441600000,0.819983220518941],[1149120000000,0.821980092989338],[1151712000000,0.824092011610293],[1154390400000,0.826286106053075],[1157068800000,0.828677422468242],[1159660800000,0.830986563061582],[1162339200000,0.833114916846902],[1164931200000,0.835136442063848],[1167609600000,0.8370593562946],[1170288000000,0.838932965032257],[1172707200000,0.840732615530269],[1175385600000,0.842647312178839],[1177977600000,0.844529138498678],[1180656000000,0.84663283953745],[1183248000000,0.848810498815867],[1185926400000,0.850971722929918],[1188604800000,0.853264428358893],[1191196800000,0.855409217308578],[1193875200000,0.857438960107706],[1196467200000,0.859353656756276],[1199145600000,0.861153307254289],[1201824000000,0.862837911601743],[1204329600000,0.864448557709553],[1207008000000,0.866174249967921],[1209600000000,0.867867071897558],[1212278400000,0.869781768546128],[1214870400000,0.871770423434342],[1217548800000,0.87380016623347],[1220227200000,0.875969607929704],[1222819200000,0.877982915564467],[1225497600000,0.879889394630854],[1228089600000,0.881680827546683],[1230768000000,0.883357214311955],[1233446400000,0.884951425255399],[1235865600000,0.886479895541382],[1238544000000,0.888115194395741],[1241136000000,0.889734058085733],[1243814400000,0.891558361330294],[1246406400000,0.893473057978864],[1249084800000,0.895494583195809],[1251763200000,0.897639372145494],[1254355200000,0.899636244615892],[1257033600000,0.901518070935731],[1259625600000,0.903284851105012],[1262304000000,0.904928367541553],[1264982400000,0.906522578484998],[1267401600000,0.908042831188798],[1270080000000,0.907871995872802],[1272672000000,0.909333427123338],[1275350400000,0.910808064028442],[1277942400000,0.912428538364542],[1280620800000,0.914171298541104],[1283299200000,0.915968409806222],[1285891200000,0.917804973683399],[1288569600000,0.919414025580265],[1291161600000,0.920942011028899],[1293840000000,0.92241324585498],[1296518400000,0.923667544729019],[1298937600000,0.924916847313091],[1301616000000,0.926320689747691],[1304208000000,0.927724597922949],[1306886400000,0.929237808158818],[1309478400000,0.930929200229156],[1312156800000,0.932641070514292],[1314835200000,0.934479762745255],[1317427200000,0.936246879835405],[1320105600000,0.93777012373912],[1322697600000,0.939250841655039],[1325376000000,0.940676320983526],[1328054400000,0.941956603852427],[1330560000000,0.943274638293876],[1333238400000,0.944653203445681],[1335830400000,0.945995981027082],[1338508800000,0.947533194820507],[1341100800000,0.949120765957549],[1343779200000,0.95085923655621],[1346457600000,0.952703327738667],[1349049600000,0.954406249076806],[1351728000000,0.956048820491396],[1354320000000,0.957518855550477],[1356998400000,0.958807725792759],[1359676800000,0.959880514711547],[1362096000000,0.961048077005648],[1364774400000,0.962326987538324],[1367366400000,0.963689454446634],[1370044800000,0.965229330736687],[1372636800000,0.966772066745339],[1375315200000,0.968592663860335],[1377993600000,0.970448177482025],[1380585600000,0.972224366782906],[1383264000000,0.97391518362249],[1385856000000,0.975423315392571],[1388534400000,0.976921972290395],[1391212800000,0.97823645673634],[1393632000000,0.97957855225842],[1396310400000,0.980992099657577],[1398902400000,0.982473622896551],[1401580800000,0.984073150615668],[1404172800000,0.985702006885595],[1406851200000,0.987603703319152],[1409529600000,0.989506155770269],[1412121600000,0.991383363808922],[1414800000000,0.993112959418826],[1417392000000,0.994608132061805],[1420070400000,0.996107750416745],[1422748800000,0.997306408041825],[1425168000000,0.998590610697427],[1427846400000,1]]},{\"name\":\"psavert\",\"type\":\"line\",\"data\":[[-79056000000,0.688741721854304],[-76377600000,0.688741721854304],[-73699200000,0.642384105960265],[-71107200000,0.708609271523179],[-68428800000,0.701986754966887],[-65836800000,0.635761589403974],[-63158400000,0.629139072847682],[-60480000000,0.668874172185431],[-57974400000,0.629139072847682],[-55296000000,0.668874172185431],[-52704000000,0.649006622516556],[-50025600000,0.629139072847682],[-47433600000,0.562913907284768],[-44755200000,0.549668874172185],[-42076800000,0.556291390728477],[-39484800000,0.56953642384106],[-36806400000,0.556291390728477],[-34214400000,0.589403973509934],[-31536000000,0.536423841059603],[-28857600000,0.496688741721854],[-26438400000,0.529801324503311],[-23760000000,0.496688741721854],[-21168000000,0.52317880794702],[-18489600000,0.589403973509934],[-15897600000,0.635761589403974],[-13219200000,0.615894039735099],[-10540800000,0.622516556291391],[-7948800000,0.609271523178808],[-5270400000,0.622516556291391],[-2678400000,0.635761589403974],[0,0.635761589403974],[2678400000,0.629139072847682],[5097600000,0.675496688741722],[7776000000,0.735099337748344],[10368000000,0.675496688741722],[13046400000,0.668874172185431],[15638400000,0.748344370860927],[18316800000,0.741721854304636],[20995200000,0.708609271523179],[23587200000,0.721854304635761],[26265600000,0.754966887417218],[28857600000,0.728476821192053],[31536000000,0.735099337748344],[34214400000,0.735099337748344],[36633600000,0.748344370860927],[39312000000,0.728476821192053],[41904000000,0.754966887417218],[44582400000,0.827814569536424],[47174400000,0.768211920529801],[49852800000,0.754966887417218],[52531200000,0.735099337748344],[55123200000,0.735099337748344],[57801600000,0.721854304635761],[60393600000,0.71523178807947],[63072000000,0.682119205298013],[65750400000,0.701986754966887],[68256000000,0.635761589403974],[70934400000,0.615894039735099],[73526400000,0.629139072847682],[76204800000,0.629139072847682],[78796800000,0.629139072847682],[81475200000,0.649006622516556],[84153600000,0.662251655629139],[86745600000,0.71523178807947],[89424000000,0.754966887417218],[92016000000,0.76158940397351],[94694400000,0.675496688741722],[97372800000,0.682119205298013],[99792000000,0.695364238410596],[102470400000,0.728476821192053],[105062400000,0.728476821192053],[107740800000,0.754966887417218],[110332800000,0.728476821192053],[113011200000,0.774834437086093],[115689600000,0.721854304635761],[118281600000,0.80794701986755],[120960000000,0.80794701986755],[123552000000,0.834437086092715],[126230400000,0.801324503311258],[128908800000,0.794701986754967],[131328000000,0.741721854304636],[134006400000,0.721854304635761],[136598400000,0.701986754966887],[139276800000,0.701986754966887],[141868800000,0.701986754966887],[144547200000,0.655629139072847],[147225600000,0.708609271523179],[149817600000,0.741721854304636],[152496000000,0.768211920529801],[155088000000,0.781456953642384],[157766400000,0.728476821192053],[160444800000,0.682119205298013],[162864000000,0.695364238410596],[165542400000,0.794701986754967],[168134400000,1],[170812800000,0.801324503311258],[173404800000,0.688741721854304],[176083200000,0.71523178807947],[178761600000,0.71523178807947],[181353600000,0.741721854304636],[184032000000,0.695364238410596],[186624000000,0.649006622516556],[189302400000,0.629139072847682],[191980800000,0.668874172185431],[194486400000,0.662251655629139],[197164800000,0.629139072847682],[199756800000,0.668874172185431],[202435200000,0.609271523178808],[205027200000,0.629139072847682],[207705600000,0.629139072847682],[210384000000,0.609271523178808],[212976000000,0.589403973509934],[215654400000,0.609271523178808],[218246400000,0.556291390728477],[220924800000,0.556291390728477],[223603200000,0.470198675496689],[226022400000,0.549668874172185],[228700800000,0.549668874172185],[231292800000,0.536423841059603],[233971200000,0.556291390728477],[236563200000,0.549668874172185],[239241600000,0.576158940397351],[241920000000,0.589403973509934],[244512000000,0.582781456953642],[247190400000,0.596026490066225],[249782400000,0.609271523178808],[252460800000,0.642384105960265],[255139200000,0.589403973509934],[257558400000,0.582781456953642],[260236800000,0.56953642384106],[262828800000,0.536423841059603],[265507200000,0.516556291390728],[268099200000,0.576158940397351],[270777600000,0.549668874172185],[273456000000,0.556291390728477],[276048000000,0.562913907284768],[278726400000,0.549668874172185],[281318400000,0.543046357615894],[283996800000,0.589403973509934],[286675200000,0.589403973509934],[289094400000,0.596026490066225],[291772800000,0.582781456953642],[294364800000,0.536423841059603],[297043200000,0.509933774834437],[299635200000,0.556291390728477],[302313600000,0.496688741721854],[304992000000,0.47682119205298],[307584000000,0.496688741721854],[310262400000,0.496688741721854],[312854400000,0.52317880794702],[315532800000,0.509933774834437],[318211200000,0.52317880794702],[320716800000,0.529801324503311],[323395200000,0.602649006622517],[325987200000,0.609271523178808],[328665600000,0.596026490066225],[331257600000,0.602649006622517],[333936000000,0.602649006622517],[336614400000,0.629139072847682],[339206400000,0.602649006622517],[341884800000,0.622516556291391],[344476800000,0.609271523178808],[347155200000,0.576158940397351],[349833600000,0.56953642384106],[352252800000,0.56953642384106],[354931200000,0.576158940397351],[357523200000,0.582781456953642],[360201600000,0.56953642384106],[362793600000,0.668874172185431],[365472000000,0.649006622516556],[368150400000,0.675496688741722],[370742400000,0.71523178807947],[373420800000,0.728476821192053],[376012800000,0.682119205298013],[378691200000,0.695364238410596],[381369600000,0.655629139072847],[383788800000,0.662251655629139],[386467200000,0.708609271523179],[389059200000,0.668874172185431],[391737600000,0.668874172185431],[394329600000,0.682119205298013],[397008000000,0.688741721854304],[399686400000,0.635761589403974],[402278400000,0.602649006622517],[404956800000,0.576158940397351],[407548800000,0.576158940397351],[410227200000,0.589403973509934],[412905600000,0.589403973509934],[415324800000,0.556291390728477],[418003200000,0.536423841059603],[420595200000,0.509933774834437],[423273600000,0.456953642384106],[425865600000,0.490066225165563],[428544000000,0.463576158940397],[431222400000,0.490066225165563],[433814400000,0.496688741721854],[436492800000,0.536423841059603],[439084800000,0.52317880794702],[441763200000,0.516556291390728],[444441600000,0.629139072847682],[446947200000,0.615894039735099],[449625600000,0.615894039735099],[452217600000,0.589403973509934],[454896000000,0.589403973509934],[457488000000,0.622516556291391],[460166400000,0.635761589403974],[462844800000,0.635761589403974],[465436800000,0.629139072847682],[468115200000,0.576158940397351],[470707200000,0.596026490066225],[473385600000,0.536423841059603],[476064000000,0.456953642384106],[478483200000,0.43046357615894],[481161600000,0.509933774834437],[483753600000,0.589403973509934],[486432000000,0.490066225165563],[489024000000,0.456953642384106],[491702400000,0.397350993377483],[494380800000,0.337748344370861],[496972800000,0.456953642384106],[499651200000,0.450331125827815],[502243200000,0.423841059602649],[504921600000,0.423841059602649],[507600000000,0.470198675496689],[510019200000,0.509933774834437],[512697600000,0.496688741721854],[515289600000,0.470198675496689],[517968000000,0.47682119205298],[520560000000,0.470198675496689],[523238400000,0.450331125827815],[525916800000,0.33112582781457],[528508800000,0.410596026490066],[531187200000,0.437086092715232],[533779200000,0.317880794701987],[536457600000,0.496688741721854],[539136000000,0.417218543046358],[541555200000,0.417218543046358],[544233600000,0.152317880794702],[546825600000,0.397350993377483],[549504000000,0.364238410596026],[552096000000,0.350993377483444],[554774400000,0.33112582781457],[557452800000,0.357615894039735],[560044800000,0.403973509933775],[562723200000,0.417218543046358],[565315200000,0.43046357615894],[567993600000,0.390728476821192],[570672000000,0.423841059602649],[573177600000,0.397350993377483],[575856000000,0.437086092715232],[578448000000,0.410596026490066],[581126400000,0.410596026490066],[583718400000,0.423841059602649],[586396800000,0.410596026490066],[589075200000,0.443708609271523],[591667200000,0.423841059602649],[594345600000,0.410596026490066],[596937600000,0.403973509933775],[599616000000,0.417218543046358],[602294400000,0.450331125827815],[604713600000,0.483443708609271],[607392000000,0.410596026490066],[609984000000,0.390728476821192],[612662400000,0.397350993377483],[615254400000,0.397350993377483],[617932800000,0.357615894039735],[620611200000,0.390728476821192],[623203200000,0.417218543046358],[625881600000,0.423841059602649],[628473600000,0.370860927152318],[631152000000,0.384105960264901],[633830400000,0.423841059602649],[636249600000,0.403973509933775],[638928000000,0.437086092715232],[641520000000,0.43046357615894],[644198400000,0.423841059602649],[646790400000,0.43046357615894],[649468800000,0.390728476821192],[652147200000,0.390728476821192],[654739200000,0.370860927152318],[657417600000,0.377483443708609],[660009600000,0.437086092715232],[662688000000,0.470198675496689],[665366400000,0.437086092715232],[667785600000,0.384105960264901],[670464000000,0.423841059602649],[673056000000,0.410596026490066],[675734400000,0.443708609271523],[678326400000,0.397350993377483],[681004800000,0.423841059602649],[683683200000,0.437086092715232],[686275200000,0.470198675496689],[688953600000,0.450331125827815],[691545600000,0.496688741721854],[694224000000,0.47682119205298],[696902400000,0.503311258278146],[699408000000,0.496688741721854],[702086400000,0.509933774834437],[704678400000,0.509933774834437],[707356800000,0.52317880794702],[709948800000,0.490066225165563],[712627200000,0.496688741721854],[715305600000,0.43046357615894],[717897600000,0.384105960264901],[720576000000,0.384105960264901],[723168000000,0.556291390728477],[725846400000,0.423841059602649],[728524800000,0.443708609271523],[730944000000,0.443708609271523],[733622400000,0.43046357615894],[736214400000,0.403973509933775],[738892800000,0.370860927152318],[741484800000,0.357615894039735],[744163200000,0.364238410596026],[746841600000,0.311258278145695],[749433600000,0.271523178807947],[752112000000,0.271523178807947],[754704000000,0.456953642384106],[757382400000,0.324503311258278],[760060800000,0.28476821192053],[762480000000,0.304635761589404],[765158400000,0.278145695364238],[767750400000,0.357615894039735],[770428800000,0.311258278145695],[773020800000,0.317880794701987],[775699200000,0.28476821192053],[778377600000,0.304635761589404],[780969600000,0.324503311258278],[783648000000,0.317880794701987],[786240000000,0.33112582781457],[788918400000,0.350993377483444],[791596800000,0.370860927152318],[794016000000,0.350993377483444],[796694400000,0.311258278145695],[799286400000,0.324503311258278],[801964800000,0.298013245033113],[804556800000,0.324503311258278],[807235200000,0.298013245033113],[809913600000,0.304635761589404],[812505600000,0.324503311258278],[815184000000,0.291390728476821],[817776000000,0.258278145695364],[820454400000,0.298013245033113],[823132800000,0.298013245033113],[825638400000,0.291390728476821],[828316800000,0.231788079470199],[830908800000,0.298013245033113],[833587200000,0.324503311258278],[836179200000,0.298013245033113],[838857600000,0.291390728476821],[841536000000,0.298013245033113],[844128000000,0.278145695364238],[846806400000,0.278145695364238],[849398400000,0.278145695364238],[852076800000,0.264900662251656],[854755200000,0.264900662251656],[857174400000,0.278145695364238],[859852800000,0.28476821192053],[862444800000,0.304635761589404],[865123200000,0.291390728476821],[867715200000,0.258278145695364],[870393600000,0.251655629139073],[873072000000,0.264900662251656],[875664000000,0.264900662251656],[878342400000,0.278145695364238],[880934400000,0.278145695364238],[883612800000,0.344370860927152],[886291200000,0.344370860927152],[888710400000,0.350993377483444],[891388800000,0.33112582781457],[893980800000,0.311258278145695],[896659200000,0.304635761589404],[899251200000,0.311258278145695],[901929600000,0.304635761589404],[904608000000,0.278145695364238],[907200000000,0.264900662251656],[909878400000,0.271523178807947],[912470400000,0.23841059602649],[915148800000,0.278145695364238],[917827200000,0.264900662251656],[920246400000,0.245033112582781],[922924800000,0.198675496688742],[925516800000,0.178807947019868],[928195200000,0.172185430463576],[930787200000,0.172185430463576],[933465600000,0.165562913907285],[936144000000,0.132450331125828],[938736000000,0.158940397350993],[941414400000,0.172185430463576],[944006400000,0.145695364238411],[946684800000,0.211920529801325],[949363200000,0.172185430463576],[951868800000,0.152317880794702],[954547200000,0.185430463576159],[957139200000,0.178807947019868],[959817600000,0.178807947019868],[962409600000,0.198675496688742],[965088000000,0.198675496688742],[967766400000,0.152317880794702],[970358400000,0.158940397350993],[973036800000,0.152317880794702],[975628800000,0.132450331125828],[978307200000,0.172185430463576],[980985600000,0.178807947019868],[983404800000,0.205298013245033],[986083200000,0.185430463576159],[988675200000,0.152317880794702],[991353600000,0.152317880794702],[993945600000,0.225165562913907],[996624000000,0.304635761589404],[999302400000,0.317880794701987],[1001894400000,0.0794701986754967],[1004572800000,0.125827814569536],[1007164800000,0.152317880794702],[1009843200000,0.258278145695364],[1012521600000,0.23841059602649],[1014940800000,0.245033112582781],[1017619200000,0.23841059602649],[1020211200000,0.28476821192053],[1022889600000,0.278145695364238],[1025481600000,0.218543046357616],[1028160000000,0.211920529801325],[1030838400000,0.231788079470199],[1033430400000,0.231788079470199],[1036108800000,0.231788079470199],[1038700800000,0.218543046357616],[1041379200000,0.218543046357616],[1044057600000,0.225165562913907],[1046476800000,0.205298013245033],[1049155200000,0.205298013245033],[1051747200000,0.23841059602649],[1054425600000,0.225165562913907],[1057017600000,0.271523178807947],[1059696000000,0.251655629139073],[1062374400000,0.198675496688742],[1064966400000,0.205298013245033],[1067644800000,0.211920529801325],[1070236800000,0.211920529801325],[1072915200000,0.185430463576159],[1075593600000,0.185430463576159],[1078099200000,0.178807947019868],[1080777600000,0.205298013245033],[1083369600000,0.205298013245033],[1086048000000,0.23841059602649],[1088640000000,0.205298013245033],[1091318400000,0.198675496688742],[1093996800000,0.158940397350993],[1096588800000,0.152317880794702],[1099267200000,0.125827814569536],[1101859200000,0.311258278145695],[1104537600000,0.0993377483443709],[1107216000000,0.0794701986754967],[1109635200000,0.0927152317880795],[1112313600000,0.0596026490066225],[1114905600000,0.0860927152317881],[1117584000000,0.0463576158940397],[1120176000000,0],[1122854400000,0.0331125827814569],[1125532800000,0.0331125827814569],[1128124800000,0.0596026490066225],[1130803200000,0.0860927152317881],[1133395200000,0.0993377483443709],[1136073600000,0.132450331125828],[1138752000000,0.132450331125828],[1141171200000,0.132450331125828],[1143849600000,0.119205298013245],[1146441600000,0.105960264900662],[1149120000000,0.119205298013245],[1151712000000,0.0794701986754967],[1154390400000,0.0927152317880795],[1157068800000,0.0927152317880795],[1159660800000,0.0927152317880795],[1162339200000,0.112582781456954],[1164931200000,0.0993377483443709],[1167609600000,0.0993377483443709],[1170288000000,0.125827814569536],[1172707200000,0.145695364238411],[1175385600000,0.132450331125828],[1177977600000,0.119205298013245],[1180656000000,0.105960264900662],[1183248000000,0.0993377483443709],[1185926400000,0.0794701986754967],[1188604800000,0.0860927152317881],[1191196800000,0.0794701986754967],[1193875200000,0.0596026490066225],[1196467200000,0.0927152317880795],[1199145600000,0.0993377483443709],[1201824000000,0.125827814569536],[1204329600000,0.119205298013245],[1207008000000,0.0794701986754967],[1209600000000,0.370860927152318],[1212278400000,0.218543046357616],[1214870400000,0.145695364238411],[1217548800000,0.105960264900662],[1220227200000,0.165562913907285],[1222819200000,0.218543046357616],[1225497600000,0.278145695364238],[1228089600000,0.278145695364238],[1230768000000,0.264900662251656],[1233446400000,0.218543046357616],[1235865600000,0.245033112582781],[1238544000000,0.304635761589404],[1241136000000,0.397350993377483],[1243814400000,0.298013245033113],[1246406400000,0.251655629139073],[1249084800000,0.178807947019868],[1251763200000,0.245033112582781],[1254355200000,0.211920529801325],[1257033600000,0.245033112582781],[1259625600000,0.245033112582781],[1262304000000,0.258278145695364],[1264982400000,0.23841059602649],[1267401600000,0.231788079470199],[1270080000000,0.278145695364238],[1272672000000,0.317880794701987],[1275350400000,0.311258278145695],[1277942400000,0.304635761589404],[1280620800000,0.311258278145695],[1283299200000,0.298013245033113],[1285891200000,0.291390728476821],[1288569600000,0.291390728476821],[1291161600000,0.324503311258278],[1293840000000,0.344370860927152],[1296518400000,0.357615894039735],[1298937600000,0.317880794701987],[1301616000000,0.311258278145695],[1304208000000,0.311258278145695],[1306886400000,0.33112582781457],[1309478400000,0.337748344370861],[1312156800000,0.33112582781457],[1314835200000,0.304635761589404],[1317427200000,0.304635761589404],[1320105600000,0.317880794701987],[1322697600000,0.370860927152318],[1325376000000,0.384105960264901],[1328054400000,0.384105960264901],[1330560000000,0.417218543046358],[1333238400000,0.43046357615894],[1335830400000,0.437086092715232],[1338508800000,0.456953642384106],[1341100800000,0.397350993377483],[1343779200000,0.384105960264901],[1346457600000,0.397350993377483],[1349049600000,0.437086092715232],[1351728000000,0.496688741721854],[1354320000000,0.649006622516556],[1356998400000,0.271523178807947],[1359676800000,0.23841059602649],[1362096000000,0.245033112582781],[1364774400000,0.278145695364238],[1367366400000,0.298013245033113],[1370044800000,0.304635761589404],[1372636800000,0.291390728476821],[1375315200000,0.298013245033113],[1377993600000,0.304635761589404],[1380585600000,0.271523178807947],[1383264000000,0.264900662251656],[1385856000000,0.278145695364238],[1388534400000,0.324503311258278],[1391212800000,0.337748344370861],[1393632000000,0.344370860927152],[1396310400000,0.344370860927152],[1398902400000,0.344370860927152],[1401580800000,0.344370860927152],[1404172800000,0.350993377483444],[1406851200000,0.33112582781457],[1409529600000,0.344370860927152],[1412121600000,0.33112582781457],[1414800000000,0.337748344370861],[1417392000000,0.357615894039735],[1420070400000,0.364238410596026],[1422748800000,0.377483443708609],[1425168000000,0.344370860927152],[1427846400000,0.357615894039735]]},{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[-79056000000,0.0235849056603774],[-76377600000,0.0330188679245283],[-73699200000,0.0283018867924528],[-71107200000,0.0424528301886793],[-68428800000,0.0330188679245283],[-65836800000,0.0377358490566038],[-63158400000,0.0518867924528302],[-60480000000,0.0235849056603774],[-57974400000,0.00471698113207546],[-55296000000,0.0283018867924528],[-52704000000,0.0188679245283019],[-50025600000,0.0188679245283019],[-47433600000,0.0235849056603774],[-44755200000,0.00943396226415095],[-42076800000,0.0283018867924528],[-39484800000,0.0377358490566038],[-36806400000,0.0188679245283019],[-34214400000,0.0188679245283019],[-31536000000,0.0188679245283019],[-28857600000,0.0424528301886793],[-26438400000,0],[-23760000000,0],[-21168000000,0.00943396226415095],[-18489600000,0.0188679245283019],[-15897600000,0.0188679245283019],[-13219200000,0.0188679245283019],[-10540800000,0.0330188679245283],[-7948800000,0.0235849056603774],[-5270400000,0.0377358490566038],[-2678400000,0.0283018867924528],[0,0.0283018867924528],[2678400000,0.0235849056603774],[5097600000,0.0283018867924528],[7776000000,0.00471698113207546],[10368000000,0.0330188679245283],[13046400000,0.0424528301886793],[15638400000,0.0518867924528302],[18316800000,0.0660377358490566],[20995200000,0.0566037735849057],[23587200000,0.0566037735849057],[26265600000,0.0754716981132075],[28857600000,0.089622641509434],[31536000000,0.10377358490566],[34214400000,0.108490566037736],[36633600000,0.113207547169811],[39312000000,0.117924528301887],[41904000000,0.127358490566038],[44582400000,0.080188679245283],[47174400000,0.10377358490566],[49852800000,0.113207547169811],[52531200000,0.0849056603773585],[55123200000,0.117924528301887],[57801600000,0.113207547169811],[60393600000,0.10377358490566],[63072000000,0.10377358490566],[65750400000,0.122641509433962],[68256000000,0.122641509433962],[70934400000,0.127358490566038],[73526400000,0.122641509433962],[76204800000,0.0660377358490566],[78796800000,0.0990566037735849],[81475200000,0.0943396226415094],[84153600000,0.0754716981132075],[86745600000,0.080188679245283],[89424000000,0.080188679245283],[92016000000,0.0990566037735849],[94694400000,0.080188679245283],[97372800000,0.0566037735849057],[99792000000,0.0707547169811321],[102470400000,0.0471698113207547],[105062400000,0.0424528301886793],[107740800000,0.0471698113207547],[110332800000,0.0566037735849057],[113011200000,0.0424528301886793],[115689600000,0.0660377358490566],[118281600000,0.0707547169811321],[120960000000,0.0518867924528302],[123552000000,0.0330188679245283],[126230400000,0.0471698113207547],[128908800000,0.0518867924528302],[131328000000,0.0377358490566038],[134006400000,0.0471698113207547],[136598400000,0.0283018867924528],[139276800000,0.0613207547169811],[141868800000,0.080188679245283],[144547200000,0.0471698113207547],[147225600000,0.0613207547169811],[149817600000,0.0707547169811321],[152496000000,0.0566037735849057],[155088000000,0.080188679245283],[157766400000,0.108490566037736],[160444800000,0.14622641509434],[162864000000,0.150943396226415],[165542400000,0.221698113207547],[168134400000,0.254716981132075],[170812800000,0.226415094339623],[173404800000,0.216981132075472],[176083200000,0.245283018867925],[178761600000,0.245283018867925],[181353600000,0.216981132075472],[184032000000,0.259433962264151],[186624000000,0.235849056603774],[189302400000,0.235849056603774],[191980800000,0.19811320754717],[194486400000,0.221698113207547],[197164800000,0.19811320754717],[199756800000,0.202830188679245],[202435200000,0.179245283018868],[205027200000,0.174528301886792],[207705600000,0.183962264150943],[210384000000,0.179245283018868],[212976000000,0.174528301886792],[215654400000,0.207547169811321],[218246400000,0.188679245283019],[220924800000,0.165094339622642],[223603200000,0.150943396226415],[226022400000,0.150943396226415],[228700800000,0.155660377358491],[231292800000,0.183962264150943],[233971200000,0.10377358490566],[236563200000,0.14622641509434],[239241600000,0.141509433962264],[241920000000,0.127358490566038],[244512000000,0.136792452830189],[247190400000,0.141509433962264],[249782400000,0.132075471698113],[252460800000,0.117924528301887],[255139200000,0.127358490566038],[257558400000,0.10377358490566],[260236800000,0.0990566037735849],[262828800000,0.080188679245283],[265507200000,0.0943396226415094],[268099200000,0.0849056603773585],[270777600000,0.0849056603773585],[273456000000,0.0754716981132075],[276048000000,0.089622641509434],[278726400000,0.0707547169811321],[281318400000,0.0754716981132075],[283996800000,0.089622641509434],[286675200000,0.089622641509434],[289094400000,0.089622641509434],[291772800000,0.0660377358490566],[294364800000,0.0754716981132075],[297043200000,0.0754716981132075],[299635200000,0.089622641509434],[302313600000,0.0377358490566038],[304992000000,0.0707547169811321],[307584000000,0.0707547169811321],[310262400000,0.0613207547169811],[312854400000,0.080188679245283],[315532800000,0.0613207547169811],[318211200000,0.0849056603773585],[320716800000,0.0943396226415094],[323395200000,0.0849056603773585],[325987200000,0.080188679245283],[328665600000,0.113207547169811],[331257600000,0.141509433962264],[333936000000,0.165094339622642],[336614400000,0.174528301886792],[339206400000,0.165094339622642],[341884800000,0.174528301886792],[344476800000,0.165094339622642],[347155200000,0.160377358490566],[349833600000,0.14622641509434],[352252800000,0.14622641509434],[354931200000,0.160377358490566],[357523200000,0.136792452830189],[360201600000,0.122641509433962],[362793600000,0.14622641509434],[365472000000,0.150943396226415],[368150400000,0.132075471698113],[370742400000,0.132075471698113],[373420800000,0.136792452830189],[376012800000,0.136792452830189],[378691200000,0.14622641509434],[381369600000,0.165094339622642],[383788800000,0.174528301886792],[386467200000,0.193396226415094],[389059200000,0.212264150943396],[391737600000,0.259433962264151],[394329600000,0.212264150943396],[397008000000,0.221698113207547],[399686400000,0.259433962264151],[402278400000,0.268867924528302],[404956800000,0.283018867924528],[407548800000,0.292452830188679],[410227200000,0.334905660377358],[412905600000,0.273584905660377],[415324800000,0.30188679245283],[418003200000,0.325471698113208],[420595200000,0.391509433962264],[423273600000,0.344339622641509],[425865600000,0.287735849056604],[428544000000,0.25],[431222400000,0.25],[433814400000,0.254716981132075],[436492800000,0.25],[439084800000,0.221698113207547],[441763200000,0.240566037735849],[444441600000,0.202830188679245],[446947200000,0.202830188679245],[449625600000,0.19811320754717],[452217600000,0.240566037735849],[454896000000,0.165094339622642],[457488000000,0.165094339622642],[460166400000,0.155660377358491],[462844800000,0.169811320754717],[465436800000,0.150943396226415],[468115200000,0.150943396226415],[470707200000,0.155660377358491],[473385600000,0.132075471698113],[476064000000,0.14622641509434],[478483200000,0.14622641509434],[481161600000,0.136792452830189],[483753600000,0.136792452830189],[486432000000,0.122641509433962],[489024000000,0.136792452830189],[491702400000,0.14622641509434],[494380800000,0.136792452830189],[496972800000,0.14622641509434],[499651200000,0.141509433962264],[502243200000,0.132075471698113],[504921600000,0.127358490566038],[507600000000,0.136792452830189],[510019200000,0.132075471698113],[512697600000,0.127358490566038],[515289600000,0.132075471698113],[517968000000,0.141509433962264],[520560000000,0.136792452830189],[523238400000,0.14622641509434],[525916800000,0.160377358490566],[528508800000,0.141509433962264],[531187200000,0.14622641509434],[533779200000,0.14622641509434],[536457600000,0.136792452830189],[539136000000,0.122641509433962],[541555200000,0.122641509433962],[544233600000,0.14622641509434],[546825600000,0.122641509433962],[549504000000,0.117924528301887],[552096000000,0.117924528301887],[554774400000,0.113207547169811],[557452800000,0.0943396226415094],[560044800000,0.108490566037736],[562723200000,0.10377358490566],[565315200000,0.0943396226415094],[567993600000,0.10377358490566],[570672000000,0.108490566037736],[573177600000,0.113207547169811],[575856000000,0.089622641509434],[578448000000,0.089622641509434],[581126400000,0.0849056603773585],[583718400000,0.0990566037735849],[586396800000,0.089622641509434],[589075200000,0.080188679245283],[591667200000,0.0754716981132075],[594345600000,0.080188679245283],[596937600000,0.089622641509434],[599616000000,0.0754716981132075],[602294400000,0.0660377358490566],[604713600000,0.0660377358490566],[607392000000,0.0660377358490566],[609984000000,0.0613207547169811],[612662400000,0.0660377358490566],[615254400000,0.0754716981132075],[617932800000,0.0471698113207547],[620611200000,0.0424528301886793],[623203200000,0.0424528301886793],[625881600000,0.0377358490566038],[628473600000,0.0424528301886793],[631152000000,0.0518867924528302],[633830400000,0.0613207547169811],[636249600000,0.0518867924528302],[638928000000,0.0377358490566038],[641520000000,0.0566037735849057],[644198400000,0.0566037735849057],[646790400000,0.0660377358490566],[649468800000,0.0660377358490566],[652147200000,0.0754716981132075],[654739200000,0.0849056603773585],[657417600000,0.080188679245283],[660009600000,0.089622641509434],[662688000000,0.0943396226415094],[665366400000,0.10377358490566],[667785600000,0.127358490566038],[670464000000,0.122641509433962],[673056000000,0.113207547169811],[675734400000,0.136792452830189],[678326400000,0.141509433962264],[681004800000,0.155660377358491],[683683200000,0.132075471698113],[686275200000,0.150943396226415],[688953600000,0.165094339622642],[691545600000,0.179245283018868],[694224000000,0.193396226415094],[696902400000,0.19811320754717],[699408000000,0.202830188679245],[702086400000,0.212264150943396],[704678400000,0.226415094339623],[707356800000,0.221698113207547],[709948800000,0.216981132075472],[712627200000,0.226415094339623],[715305600000,0.216981132075472],[717897600000,0.235849056603774],[720576000000,0.235849056603774],[723168000000,0.25],[725846400000,0.216981132075472],[728524800000,0.212264150943396],[730944000000,0.212264150943396],[733622400000,0.207547169811321],[736214400000,0.193396226415094],[738892800000,0.202830188679245],[741484800000,0.19811320754717],[744163200000,0.19811320754717],[746841600000,0.202830188679245],[749433600000,0.188679245283019],[752112000000,0.202830188679245],[754704000000,0.202830188679245],[757382400000,0.216981132075472],[760060800000,0.245283018867925],[762480000000,0.25],[765158400000,0.240566037735849],[767750400000,0.245283018867925],[770428800000,0.25],[773020800000,0.235849056603774],[775699200000,0.231132075471698],[778377600000,0.245283018867925],[780969600000,0.283018867924528],[783648000000,0.235849056603774],[786240000000,0.221698113207547],[788918400000,0.188679245283019],[791596800000,0.193396226415094],[794016000000,0.202830188679245],[796694400000,0.202830188679245],[799286400000,0.240566037735849],[801964800000,0.183962264150943],[804556800000,0.212264150943396],[807235200000,0.202830188679245],[809913600000,0.183962264150943],[812505600000,0.19811320754717],[815184000000,0.188679245283019],[817776000000,0.202830188679245],[820454400000,0.202830188679245],[823132800000,0.179245283018868],[825638400000,0.202830188679245],[828316800000,0.216981132075472],[830908800000,0.216981132075472],[833587200000,0.202830188679245],[836179200000,0.202830188679245],[838857600000,0.207547169811321],[841536000000,0.212264150943396],[844128000000,0.202830188679245],[846806400000,0.174528301886792],[849398400000,0.179245283018868],[852076800000,0.179245283018868],[854755200000,0.193396226415094],[857174400000,0.183962264150943],[859852800000,0.202830188679245],[862444800000,0.188679245283019],[865123200000,0.188679245283019],[867715200000,0.202830188679245],[870393600000,0.179245283018868],[873072000000,0.19811320754717],[875664000000,0.174528301886792],[878342400000,0.169811320754717],[880934400000,0.165094339622642],[883612800000,0.160377358490566],[886291200000,0.141509433962264],[888710400000,0.132075471698113],[891388800000,0.127358490566038],[893980800000,0.0943396226415094],[896659200000,0.136792452830189],[899251200000,0.127358490566038],[901929600000,0.132075471698113],[904608000000,0.127358490566038],[907200000000,0.0849056603773585],[909878400000,0.122641509433962],[912470400000,0.132075471698113],[915148800000,0.136792452830189],[917827200000,0.132075471698113],[920246400000,0.132075471698113],[922924800000,0.10377358490566],[925516800000,0.117924528301887],[928195200000,0.108490566037736],[930787200000,0.0849056603773585],[933465600000,0.117924528301887],[936144000000,0.0943396226415094],[938736000000,0.0990566037735849],[941414400000,0.10377358490566],[944006400000,0.0849056603773585],[946684800000,0.0849056603773585],[949363200000,0.0990566037735849],[951868800000,0.0943396226415094],[954547200000,0.0990566037735849],[957139200000,0.0849056603773585],[959817600000,0.080188679245283],[962409600000,0.0943396226415094],[965088000000,0.108490566037736],[967766400000,0.0566037735849057],[970358400000,0.0990566037735849],[973036800000,0.0990566037735849],[975628800000,0.0943396226415094],[978307200000,0.0849056603773585],[980985600000,0.0990566037735849],[983404800000,0.122641509433962],[986083200000,0.089622641509434],[988675200000,0.108490566037736],[991353600000,0.0943396226415094],[993945600000,0.132075471698113],[996624000000,0.136792452830189],[999302400000,0.150943396226415],[1001894400000,0.155660377358491],[1004572800000,0.174528301886792],[1007164800000,0.19811320754717],[1009843200000,0.207547169811321],[1012521600000,0.202830188679245],[1014940800000,0.207547169811321],[1017619200000,0.231132075471698],[1020211200000,0.259433962264151],[1022889600000,0.330188679245283],[1025481600000,0.231132075471698],[1028160000000,0.235849056603774],[1030838400000,0.259433962264151],[1033430400000,0.264150943396226],[1036108800000,0.25],[1038700800000,0.264150943396226],[1041379200000,0.264150943396226],[1044057600000,0.259433962264151],[1046476800000,0.268867924528302],[1049155200000,0.292452830188679],[1051747200000,0.278301886792453],[1054425600000,0.35377358490566],[1057017600000,0.297169811320755],[1059696000000,0.287735849056604],[1062374400000,0.292452830188679],[1064966400000,0.30188679245283],[1067644800000,0.297169811320755],[1070236800000,0.30188679245283],[1072915200000,0.311320754716981],[1075593600000,0.292452830188679],[1078099200000,0.292452830188679],[1080777600000,0.259433962264151],[1083369600000,0.278301886792453],[1086048000000,0.330188679245283],[1088640000000,0.231132075471698],[1091318400000,0.245283018867925],[1093996800000,0.264150943396226],[1096588800000,0.259433962264151],[1099267200000,0.268867924528302],[1101859200000,0.259433962264151],[1104537600000,0.254716981132075],[1107216000000,0.245283018867925],[1109635200000,0.25],[1112313600000,0.235849056603774],[1114905600000,0.240566037735849],[1117584000000,0.235849056603774],[1120176000000,0.226415094339623],[1122854400000,0.245283018867925],[1125532800000,0.207547169811321],[1128124800000,0.216981132075472],[1130803200000,0.212264150943396],[1133395200000,0.221698113207547],[1136073600000,0.216981132075472],[1138752000000,0.240566037735849],[1141171200000,0.221698113207547],[1143849600000,0.207547169811321],[1146441600000,0.212264150943396],[1149120000000,0.155660377358491],[1151712000000,0.188679245283019],[1154390400000,0.207547169811321],[1157068800000,0.188679245283019],[1159660800000,0.183962264150943],[1162339200000,0.202830188679245],[1164931200000,0.165094339622642],[1167609600000,0.202830188679245],[1170288000000,0.212264150943396],[1172707200000,0.240566037735849],[1175385600000,0.216981132075472],[1177977600000,0.19811320754717],[1180656000000,0.174528301886792],[1183248000000,0.221698113207547],[1185926400000,0.226415094339623],[1188604800000,0.221698113207547],[1191196800000,0.207547169811321],[1193875200000,0.216981132075472],[1196467200000,0.207547169811321],[1199145600000,0.235849056603774],[1201824000000,0.221698113207547],[1204329600000,0.221698113207547],[1207008000000,0.254716981132075],[1209600000000,0.183962264150943],[1212278400000,0.235849056603774],[1214870400000,0.268867924528302],[1217548800000,0.268867924528302],[1220227200000,0.292452830188679],[1222819200000,0.30188679245283],[1225497600000,0.273584905660377],[1228089600000,0.306603773584906],[1230768000000,0.316037735849057],[1233446400000,0.363207547169811],[1235865600000,0.391509433962264],[1238544000000,0.429245283018868],[1241136000000,0.481132075471698],[1243814400000,0.622641509433962],[1246406400000,0.566037735849057],[1249084800000,0.580188679245283],[1251763200000,0.650943396226415],[1254355200000,0.702830188679245],[1257033600000,0.745283018867925],[1259625600000,0.759433962264151],[1262304000000,0.754716981132076],[1264982400000,0.75],[1267401600000,0.773584905660377],[1270080000000,0.85377358490566],[1272672000000,0.863207547169811],[1275350400000,1],[1277942400000,0.863207547169811],[1280620800000,0.80188679245283],[1283299200000,0.768867924528302],[1285891200000,0.811320754716981],[1288569600000,0.80188679245283],[1291161600000,0.844339622641509],[1293840000000,0.825471698113208],[1296518400000,0.806603773584906],[1298937600000,0.825471698113208],[1301616000000,0.797169811320755],[1304208000000,0.830188679245283],[1306886400000,0.867924528301887],[1309478400000,0.849056603773585],[1312156800000,0.867924528301887],[1314835200000,0.849056603773585],[1317427200000,0.783018867924528],[1320105600000,0.792452830188679],[1322697600000,0.778301886792453],[1325376000000,0.792452830188679],[1328054400000,0.740566037735849],[1330560000000,0.716981132075472],[1333238400000,0.712264150943396],[1335830400000,0.75],[1338508800000,0.773584905660377],[1341100800000,0.636792452830189],[1343779200000,0.679245283018868],[1346457600000,0.69811320754717],[1349049600000,0.75],[1351728000000,0.688679245283019],[1354320000000,0.64622641509434],[1356998400000,0.556603773584906],[1359676800000,0.622641509433962],[1362096000000,0.641509433962264],[1364774400000,0.617924528301887],[1367366400000,0.617924528301887],[1370044800000,0.613207547169811],[1372636800000,0.575471698113208],[1375315200000,0.589622641509434],[1377993600000,0.589622641509434],[1380585600000,0.580188679245283],[1383264000000,0.617924528301887],[1385856000000,0.627358490566038],[1388534400000,0.537735849056604],[1391212800000,0.561320754716981],[1393632000000,0.556603773584906],[1396310400000,0.55188679245283],[1398902400000,0.5],[1401580800000,0.462264150943396],[1404172800000,0.429245283018868],[1406851200000,0.419811320754717],[1409529600000,0.443396226415094],[1412121600000,0.452830188679245],[1414800000000,0.424528301886792],[1417392000000,0.419811320754717],[1420070400000,0.433962264150943],[1422748800000,0.419811320754717],[1425168000000,0.377358490566038],[1427846400000,0.35377358490566]]},{\"name\":\"unemploy\",\"type\":\"line\",\"data\":[[-79056000000,0.0204468303465698],[-76377600000,0.0205257756374832],[-73699200000,0.0215520644193574],[-71107200000,0.0361569432383358],[-68428800000,0.0300781558380043],[-65836800000,0.0262887818741612],[-63158400000,0.0152364411462856],[-60480000000,0.0249467119286335],[-57974400000,0.0151574958553722],[-55296000000,0.00189468698192153],[-52704000000,0.00434199100023684],[-50025600000,0.0199731586010894],[-47433600000,0.0156311676008526],[-44755200000,0.00655245914581195],[-42076800000,7.8945290913397e-05],[-39484800000,0.000315781163653588],[-36806400000,0.00236835872740191],[-34214400000,0],[-31536000000,0.0026051946001421],[-28857600000,0.000552617036393779],[-26438400000,0.00213152285466172],[-23760000000,0.00576300623667798],[-21168000000,0.00221046814557512],[-18489600000,0.010341833109655],[-15897600000,0.0144469882371517],[-13219200000,0.0134996447461909],[-10540800000,0.0280255782742559],[-7948800000,0.0287360858924765],[-5270400000,0.0134996447461909],[-2678400000,0.015710112891766],[0,0.0407357701113129],[2678400000,0.0606299834214889],[5097600000,0.0749980263677272],[7776000000,0.0877871634956975],[10368000000,0.0974184889871319],[13046400000,0.109418173205968],[15638400000,0.117628483460962],[18316800000,0.124023052024947],[20995200000,0.139812110207626],[23587200000,0.150469724480935],[26265600000,0.174705928791348],[28857600000,0.188758190573932],[31536000000,0.181653114391727],[34214400000,0.175100655245915],[36633600000,0.18173205968264],[39312000000,0.179521591537065],[41904000000,0.182442567300861],[44582400000,0.178732138627931],[47174400000,0.185521433646483],[49852800000,0.193337017446909],[52531200000,0.186074050682877],[55123200000,0.179126865082498],[57801600000,0.195468540301571],[60393600000,0.194915923265177],[63072000000,0.184258308991869],[65750400000,0.17707428751875],[68256000000,0.185758269519223],[70934400000,0.179521591537065],[73526400000,0.176600615773269],[76204800000,0.176679561064183],[78796800000,0.175890108155049],[81475200000,0.177942685718797],[84153600000,0.170837609536591],[86745600000,0.172890187100339],[89424000000,0.151338122680982],[92016000000,0.146680350517092],[94694400000,0.129549222388884],[97372800000,0.139496329043973],[99792000000,0.134917502170995],[102470400000,0.140048946080366],[105062400000,0.129786058261625],[107740800000,0.13247019815268],[110332800000,0.127891371279703],[113011200000,0.127891371279703],[115689600000,0.131443909370806],[118281600000,0.115181179442646],[120960000000,0.135075392752822],[123552000000,0.142417304807768],[126230400000,0.154653824899345],[128908800000,0.16152206520881],[131328000000,0.153864371990211],[134006400000,0.152601247335596],[136598400000,0.159469487645062],[139276800000,0.176995342227836],[141868800000,0.187731901792058],[144547200000,0.184495144864609],[147225600000,0.217257440593669],[149817600000,0.224046735612221],[152496000000,0.272755980105787],[155088000000,0.311912844398832],[157766400000,0.38020052103892],[160444800000,0.381700481566275],[162864000000,0.41785742480461],[165542400000,0.436172732296519],[168134400000,0.453777532170206],[170812800000,0.436962185205652],[173404800000,0.429620273150707],[176083200000,0.413910160258941],[178761600000,0.413515433804374],[181353600000,0.411462856240625],[184032000000,0.403331491276545],[186624000000,0.399384226730875],[189302400000,0.382805715639062],[191980800000,0.366385095129076],[194486400000,0.358806347201389],[197164800000,0.366700876292729],[199756800000,0.344833030709718],[202435200000,0.366069313965422],[205027200000,0.379332122838873],[207705600000,0.381542590984448],[210384000000,0.370648140838399],[212976000000,0.374595405384069],[215654400000,0.389595010657614],[218246400000,0.383674113839109],[220924800000,0.362753611747059],[223603200000,0.375621694165943],[226022400000,0.364885134601721],[228700800000,0.345306702455199],[231292800000,0.333622799400016],[233971200000,0.351227599273703],[236563200000,0.327149285545117],[239241600000,0.334728033472803],[241920000000,0.320991552853872],[244512000000,0.321938896344833],[247190400000,0.32604405147233],[249782400000,0.292176521670482],[252460800000,0.300307886634562],[255139200000,0.286808241888371],[257558400000,0.288308202415726],[260236800000,0.275913791742323],[262828800000,0.271729691323913],[265507200000,0.263914107523486],[268099200000,0.286097734270151],[270777600000,0.268019262650983],[273456000000,0.271571800742086],[276048000000,0.257519538959501],[278726400000,0.267782426778243],[281318400000,0.279703165706166],[283996800000,0.270308676087471],[286675200000,0.275361174705929],[289094400000,0.270308676087471],[291772800000,0.267150864450935],[294364800000,0.249072392831768],[297043200000,0.258466882450462],[299635200000,0.261387858214258],[302313600000,0.286966132470198],[304992000000,0.276703244651457],[307584000000,0.285071445488277],[310262400000,0.2804926186153],[312854400000,0.287360858924765],[315532800000,0.315623273071761],[318211200000,0.317123233599116],[320716800000,0.319254756453778],[323395200000,0.368911344438304],[325987200000,0.418331096550091],[328665600000,0.427330859714218],[331257600000,0.448251361806268],[333936000000,0.44177784795137],[336614400000,0.421252072313886],[339206400000,0.426541406805084],[341884800000,0.421409962895713],[344476800000,0.397331649167127],[347155200000,0.425199336859556],[349833600000,0.423620431041288],[352252800000,0.418173205968264],[354931200000,0.40925238809505],[357523200000,0.433330701823636],[360201600000,0.427330859714218],[362793600000,0.40877871634957],[365472000000,0.422436251677587],[368150400000,0.437751638114786],[370742400000,0.47059287913476],[373420800000,0.500828925554591],[376012800000,0.519617904791979],[378691200000,0.529880792610721],[381369600000,0.554195942212047],[383788800000,0.569195547485593],[386467200000,0.596747454014368],[389059200000,0.603931475487487],[391737600000,0.619957369542907],[394329600000,0.644509355016973],[397008000000,0.647035604326202],[399686400000,0.673561222073103],[402278400000,0.698192152838083],[404956800000,0.730480776821663],[407548800000,0.739401594694876],[410227200000,0.69858687929265],[412905600000,0.699455277492698],[415324800000,0.688639772637562],[418003200000,0.677587431909687],[420595200000,0.668587668745559],[423273600000,0.675850635509592],[425865600000,0.620746822452041],[428544000000,0.626667719270546],[431222400000,0.599747375069077],[433814400000,0.568563985158285],[436492800000,0.537933212283887],[439084800000,0.524670403410437],[441763200000,0.499171074445409],[444441600000,0.482039946317202],[446947200000,0.478487408226099],[449625600000,0.479750532880714],[452217600000,0.455593273861214],[454896000000,0.437435856951133],[457488000000,0.461987842425199],[460166400000,0.460566827188758],[462844800000,0.448567142969922],[465436800000,0.449672377042709],[468115200000,0.435225388805558],[470707200000,0.447856635351701],[473385600000,0.452988079261072],[476064000000,0.444935659587906],[478483200000,0.446356674824347],[481161600000,0.450777611115497],[483753600000,0.443435699060551],[486432000000,0.455909055024868],[489024000000,0.460093155443278],[491702400000,0.435067498223731],[494380800000,0.439172653351228],[496972800000,0.443119917896897],[499651200000,0.42969921844162],[502243200000,0.430488671350754],[504921600000,0.403410436567459],[507600000000,0.451330228151891],[510019200000,0.449830267624536],[512697600000,0.448330307097182],[515289600000,0.454251203915686],[517968000000,0.459698428988711],[520560000000,0.444777769006079],[523238400000,0.430251835478014],[525916800000,0.444067261387858],[528508800000,0.438777926896661],[531187200000,0.432146522459935],[533779200000,0.410357622167838],[536457600000,0.411068129786058],[539136000000,0.408936606931397],[541555200000,0.408699771058656],[544233600000,0.383437277966369],[546825600000,0.385963527275598],[549504000000,0.37206915607484],[552096000000,0.361806268256099],[554774400000,0.361253651219705],[557452800000,0.348701349964475],[560044800000,0.358569511328649],[562723200000,0.343412015473277],[565315200000,0.335596431672851],[567993600000,0.336938501618378],[570672000000,0.335043814636457],[573177600000,0.330859714218047],[575856000000,0.309149759216863],[578448000000,0.323202020999447],[581126400000,0.304807768216626],[583718400000,0.309465540380516],[586396800000,0.328254519617905],[589075200000,0.309386595089603],[591667200000,0.306544564616721],[594345600000,0.304097260598405],[596937600000,0.302597300071051],[599616000000,0.315544327780848],[602294400000,0.290044998815821],[604713600000,0.277887424015157],[607392000000,0.298650035525381],[609984000000,0.291308123470435],[612662400000,0.307255072234941],[615254400000,0.300781558380043],[617932800000,0.302044683034657],[620611200000,0.308281361016815],[623203200000,0.311439172653351],[625881600000,0.318938975290124],[628473600000,0.314360148417147],[631152000000,0.321070498144786],[633830400000,0.313097023762533],[636249600000,0.308912923344123],[638928000000,0.324623036235889],[641520000000,0.320281045235652],[644198400000,0.308281361016815],[646790400000,0.334491197600063],[649468800000,0.355490644983027],[652147200000,0.369700797347438],[654739200000,0.376884818820557],[657417600000,0.400963132549143],[660009600000,0.411778637404279],[662688000000,0.420778400568406],[665366400000,0.440514723296755],[667785600000,0.465856161679956],[670464000000,0.454251203915686],[673056000000,0.477697955316965],[675734400000,0.474224362516776],[678326400000,0.465856161679956],[681004800000,0.472171784953028],[683683200000,0.476592721244178],[686275200000,0.486066156153785],[688953600000,0.493092287045078],[691545600000,0.514170679718955],[694224000000,0.520881029446594],[696902400000,0.534380674192784],[699408000000,0.534854345938265],[702086400000,0.531301807847162],[704678400000,0.55727480855767],[707356800000,0.580642614668035],[709948800000,0.56564300939449],[712627200000,0.560669456066946],[715305600000,0.560195784321465],[717897600000,0.529959737901634],[720576000000,0.543143601484172],[723168000000,0.542512039156864],[725846400000,0.524196731664956],[728524800000,0.512986500355254],[730944000000,0.502960448409252],[733622400000,0.507223494118576],[736214400000,0.510302360464198],[738892800000,0.508091892318623],[741484800000,0.493013341754164],[744163200000,0.479829478171627],[746841600000,0.475961158916871],[749433600000,0.478803189389753],[752112000000,0.462382568879766],[754704000000,0.457251124970395],[757382400000,0.469329754480145],[760060800000,0.465619325807216],[762480000000,0.456698507934002],[765158400000,0.44572511249704],[767750400000,0.412883871477066],[770428800000,0.413831214968027],[773020800000,0.415331175495382],[775699200000,0.414304886713508],[778377600000,0.398594773821742],[780969600000,0.390542354148575],[783648000000,0.370253414383832],[786240000000,0.358806347201389],[788918400000,0.370253414383832],[791596800000,0.355411699692113],[794016000000,0.352727559801058],[796694400000,0.391568642930449],[799286400000,0.374595405384069],[801964800000,0.374358569511329],[804556800000,0.382253098602668],[807235200000,0.378858451093392],[809913600000,0.378384779347912],[812505600000,0.366542985710902],[815184000000,0.374279624220415],[817776000000,0.374042788347675],[820454400000,0.379411068129786],[823132800000,0.365358806347201],[825638400000,0.365753532801768],[828316800000,0.373411226020368],[830908800000,0.374042788347675],[833587200000,0.348148732928081],[836179200000,0.367253493329123],[838857600000,0.331333385963527],[841536000000,0.338991079182127],[844128000000,0.343096234309623],[846806400000,0.35928001894687],[849398400000,0.360622088892398],[852076800000,0.353122286255625],[854755200000,0.348701349964475],[857174400000,0.340648930291308],[859852800000,0.330622878345307],[862444800000,0.313412804926186],[865123200000,0.324780926817715],[867715200000,0.313412804926186],[870393600000,0.309702376253256],[873072000000,0.3134917502171],[875664000000,0.297544801452593],[878342400000,0.286018788979237],[880934400000,0.299281597852688],[883612800000,0.290755506434041],[886291200000,0.285860898397411],[888710400000,0.295018552143365],[891388800000,0.257045867214021],[893980800000,0.265414068050841],[896659200000,0.278440041051551],[899251200000,0.282150469724481],[901929600000,0.275834846451409],[904608000000,0.28538722665193],[907200000000,0.283808320833662],[909878400000,0.269598168469251],[912470400000,0.26422988868714],[915148800000,0.25980895239599],[917827200000,0.270466566669298],[920246400000,0.244572511249704],[922924800000,0.262019420541565],[925516800000,0.245598800031578],[928195200000,0.257835320123155],[930787200000,0.263677271650746],[933465600000,0.248914502249941],[936144000000,0.254993289650272],[938736000000,0.244177784795137],[941414400000,0.239283176758506],[944006400000,0.234309623430962],[946684800000,0.238651614431199],[949363200000,0.250493408068209],[951868800000,0.240625246704034],[954547200000,0.220731033393858],[957139200000,0.242598878976869],[959817600000,0.234151732849136],[962409600000,0.241730480776822],[965088000000,0.250098681613642],[967766400000,0.232099155285387],[970358400000,0.224915133812268],[973036800000,0.233204389358175],[975628800000,0.232809662903608],[978307200000,0.263519381068919],[980985600000,0.268729770269203],[983404800000,0.2728349253967],[986083200000,0.283097813215442],[988675200000,0.279545275124339],[991353600000,0.299913160179995],[993945600000,0.307728743980422],[996624000000,0.343964632509671],[999302400000,0.35185916160101],[1001894400000,0.395436962185206],[1004572800000,0.419831057077445],[1007164800000,0.439962106260362],[1009843200000,0.433962264150943],[1012521600000,0.436567458751085],[1014940800000,0.443593589642378],[1017619200000,0.46688245046183],[1020211200000,0.451093392279151],[1022889600000,0.45061972053367],[1025481600000,0.45038288466093],[1028160000000,0.443593589642378],[1030838400000,0.439409489223968],[1033430400000,0.443830425515118],[1036108800000,0.460645772479672],[1038700800000,0.470119207389279],[1041379200000,0.460645772479672],[1044057600000,0.468382410989184],[1046476800000,0.466014052261783],[1049155200000,0.486066156153785],[1051747200000,0.495144864608826],[1054425600000,0.519538959501066],[1057017600000,0.49940791031815],[1059696000000,0.490329201863109],[1062374400000,0.492302834135944],[1064966400000,0.477382174153312],[1067644800000,0.465066708770822],[1070236800000,0.444619878424252],[1072915200000,0.448803978842662],[1075593600000,0.432778084787242],[1078099200000,0.458356359043183],[1080777600000,0.433014920659983],[1083369600000,0.436330622878345],[1086048000000,0.442172574405937],[1088640000000,0.430330780768927],[1091318400000,0.418804768295571],[1093996800000,0.413831214968027],[1096588800000,0.424409883950422],[1099267200000,0.414225941422594],[1101859200000,0.414383832004421],[1104537600000,0.402542038367411],[1107216000000,0.418015315386437],[1109635200000,0.398831609694482],[1112313600000,0.393700165785111],[1114905600000,0.39204231467593],[1117584000000,0.382016262729928],[1120176000000,0.372700718402147],[1122854400000,0.36788505565643],[1125532800000,0.384305676166417],[1128124800000,0.376411147075077],[1130803200000,0.385331964948291],[1133395200000,0.362674666456146],[1136073600000,0.345701428909766],[1138752000000,0.355174863819373],[1141171200000,0.346332991237073],[1143849600000,0.350122365200916],[1146441600000,0.33907002447304],[1149120000000,0.340727875582222],[1151712000000,0.354464356201153],[1154390400000,0.347832951764427],[1157068800000,0.328570300781558],[1159660800000,0.319096865871951],[1162339200000,0.330543933054393],[1164931200000,0.32185995105392],[1167609600000,0.349806584037262],[1170288000000,0.33488592405463],[1172707200000,0.319412647035604],[1175385600000,0.328807136654299],[1177977600000,0.322175732217573],[1180656000000,0.338991079182127],[1183248000000,0.352411778637404],[1185926400000,0.345938264782506],[1188604800000,0.354069629746586],[1191196800000,0.359358964237783],[1193875200000,0.359595800110523],[1196467200000,0.391568642930449],[1199145600000,0.394726454566985],[1201824000000,0.379884739875266],[1204329600000,0.40554195942212],[1207008000000,0.390937080603142],[1209600000000,0.450777611115497],[1212278400000,0.464987763479908],[1214870400000,0.493565958790558],[1217548800000,0.53311754953817],[1220227200000,0.53753848582932],[1222819200000,0.583326754559091],[1225497600000,0.619957369542907],[1228089600000,0.679008447146128],[1230768000000,0.73995421173127],[1233446400000,0.806268256098524],[1235865600000,0.847951369700797],[1238544000000,0.881661008920818],[1241136000000,0.932659666850872],[1243814400000,0.949080287360859],[1246406400000,0.940712086524039],[1249084800000,0.957527433488592],[1251763200000,0.972921765216705],[1254355200000,1],[1257033600000,0.989500276308518],[1259625600000,0.979947896107997],[1262304000000,0.975842740980501],[1264982400000,0.981132075471698],[1267401600000,0.98815820636299],[1270080000000,0.997868477145338],[1272672000000,0.960290518670561],[1275350400000,0.930686034578037],[1277942400000,0.933685955632746],[1280620800000,0.944422515196969],[1283299200000,0.938975290123944],[1285891200000,0.9340017367964],[1288569600000,0.978605826162469],[1291161600000,0.920738927922949],[1293840000000,0.894292255466961],[1296518400000,0.879055814320676],[1298937600000,0.872503355174864],[1301616000000,0.889871319175811],[1304208000000,0.881818899502645],[1306886400000,0.890266045630378],[1309478400000,0.874555932738612],[1312156800000,0.878897923738849],[1314835200000,0.889160811557591],[1317427200000,0.861214178574248],[1320105600000,0.838162153627536],[1322697600000,0.821662587826636],[1325376000000,0.798294781716271],[1328054400000,0.799557906370885],[1330560000000,0.791663377279545],[1333238400000,0.786374042788348],[1335830400000,0.787479276861135],[1338508800000,0.790005526170364],[1341100800000,0.787163495697482],[1343779200000,0.772558616878503],[1346457600000,0.744454093313334],[1349049600000,0.745164600931554],[1351728000000,0.73577011131286],[1354320000000,0.758901081550486],[1356998400000,0.772558616878503],[1359676800000,0.731428120312623],[1362096000000,0.710823399384227],[1364774400000,0.716428515039078],[1367366400000,0.708060314202258],[1370044800000,0.715718007420857],[1372636800000,0.682876766400884],[1375315200000,0.678455830109734],[1377993600000,0.677745322491513],[1380585600000,0.667166653509118],[1383264000000,0.639614746980343],[1385856000000,0.609378700560512],[1388534400000,0.593431751796005],[1391212800000,0.605036709560275],[1393632000000,0.60748401357859],[1396310400000,0.553959106339307],[1398902400000,0.56635351701271],[1401580800000,0.534854345938265],[1404172800000,0.546538248993447],[1406851200000,0.545827741375227],[1409529600000,0.519223178337412],[1412121600000,0.497750059208968],[1414800000000,0.505644588300308],[1417392000000,0.476197994789611],[1420070400000,0.490881818899503],[1422748800000,0.467750848661877],[1425168000000,0.459382647825057],[1427846400000,0.461119444225152]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":[1,2,3,4,5],\"dashArray\":[1,2,3,4,5]},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_subtitle.html","id":null,"dir":"Reference","previous_headings":"","what":"Chart's subtitle — ax_subtitle","title":"Chart's subtitle — ax_subtitle","text":"Chart's subtitle","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_subtitle.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Chart's subtitle — ax_subtitle","text":"","code":"ax_subtitle( ax, text = NULL, align = NULL, margin = NULL, offsetX = NULL, offsetY = NULL, floating = NULL, style = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_subtitle.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Chart's subtitle — ax_subtitle","text":"ax apexchart() htmlwidget object. text Text display subtitle chart. align Alignment subtitle relative chart area. Possible Options: \"left\", \"center\" \"right\". margin Numeric. Vertical spacing around subtitle text. offsetX Numeric. Sets left offset subtitle text. offsetY Numeric. Sets top offset subtitle text floating Logical. floating option take subtitle text chart area make float top chart. style List two items: fontSize (Font Size subtitle text) color (Fore color subtitle text). ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_subtitle.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Chart's subtitle — ax_subtitle","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_subtitle.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Chart's subtitle — ax_subtitle","text":"See https://apexcharts.com/docs/options/subtitle/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_subtitle.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Chart's subtitle — ax_subtitle","text":"","code":"data(\"economics\", package = \"ggplot2\") apex( data = economics, mapping = aes(x = date, y = uempmed), type = \"line\" ) %>% ax_title( text = \"Median duration of unemployment\" ) %>% ax_subtitle( text = \"in weeks\" ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[-79056000000,4.5],[-76377600000,4.7],[-73699200000,4.6],[-71107200000,4.9],[-68428800000,4.7],[-65836800000,4.8],[-63158400000,5.1],[-60480000000,4.5],[-57974400000,4.1],[-55296000000,4.6],[-52704000000,4.4],[-50025600000,4.4],[-47433600000,4.5],[-44755200000,4.2],[-42076800000,4.6],[-39484800000,4.8],[-36806400000,4.4],[-34214400000,4.4],[-31536000000,4.4],[-28857600000,4.9],[-26438400000,4],[-23760000000,4],[-21168000000,4.2],[-18489600000,4.4],[-15897600000,4.4],[-13219200000,4.4],[-10540800000,4.7],[-7948800000,4.5],[-5270400000,4.8],[-2678400000,4.6],[0,4.6],[2678400000,4.5],[5097600000,4.6],[7776000000,4.1],[10368000000,4.7],[13046400000,4.9],[15638400000,5.1],[18316800000,5.4],[20995200000,5.2],[23587200000,5.2],[26265600000,5.6],[28857600000,5.9],[31536000000,6.2],[34214400000,6.3],[36633600000,6.4],[39312000000,6.5],[41904000000,6.7],[44582400000,5.7],[47174400000,6.2],[49852800000,6.4],[52531200000,5.8],[55123200000,6.5],[57801600000,6.4],[60393600000,6.2],[63072000000,6.2],[65750400000,6.6],[68256000000,6.6],[70934400000,6.7],[73526400000,6.6],[76204800000,5.4],[78796800000,6.1],[81475200000,6],[84153600000,5.6],[86745600000,5.7],[89424000000,5.7],[92016000000,6.1],[94694400000,5.7],[97372800000,5.2],[99792000000,5.5],[102470400000,5],[105062400000,4.9],[107740800000,5],[110332800000,5.2],[113011200000,4.9],[115689600000,5.4],[118281600000,5.5],[120960000000,5.1],[123552000000,4.7],[126230400000,5],[128908800000,5.1],[131328000000,4.8],[134006400000,5],[136598400000,4.6],[139276800000,5.3],[141868800000,5.7],[144547200000,5],[147225600000,5.3],[149817600000,5.5],[152496000000,5.2],[155088000000,5.7],[157766400000,6.3],[160444800000,7.1],[162864000000,7.2],[165542400000,8.7],[168134400000,9.4],[170812800000,8.8],[173404800000,8.6],[176083200000,9.2],[178761600000,9.2],[181353600000,8.6],[184032000000,9.5],[186624000000,9],[189302400000,9],[191980800000,8.2],[194486400000,8.7],[197164800000,8.2],[199756800000,8.3],[202435200000,7.8],[205027200000,7.7],[207705600000,7.9],[210384000000,7.8],[212976000000,7.7],[215654400000,8.4],[218246400000,8],[220924800000,7.5],[223603200000,7.2],[226022400000,7.2],[228700800000,7.3],[231292800000,7.9],[233971200000,6.2],[236563200000,7.1],[239241600000,7],[241920000000,6.7],[244512000000,6.9],[247190400000,7],[249782400000,6.8],[252460800000,6.5],[255139200000,6.7],[257558400000,6.2],[260236800000,6.1],[262828800000,5.7],[265507200000,6],[268099200000,5.8],[270777600000,5.8],[273456000000,5.6],[276048000000,5.9],[278726400000,5.5],[281318400000,5.6],[283996800000,5.9],[286675200000,5.9],[289094400000,5.9],[291772800000,5.4],[294364800000,5.6],[297043200000,5.6],[299635200000,5.9],[302313600000,4.8],[304992000000,5.5],[307584000000,5.5],[310262400000,5.3],[312854400000,5.7],[315532800000,5.3],[318211200000,5.8],[320716800000,6],[323395200000,5.8],[325987200000,5.7],[328665600000,6.4],[331257600000,7],[333936000000,7.5],[336614400000,7.7],[339206400000,7.5],[341884800000,7.7],[344476800000,7.5],[347155200000,7.4],[349833600000,7.1],[352252800000,7.1],[354931200000,7.4],[357523200000,6.9],[360201600000,6.6],[362793600000,7.1],[365472000000,7.2],[368150400000,6.8],[370742400000,6.8],[373420800000,6.9],[376012800000,6.9],[378691200000,7.1],[381369600000,7.5],[383788800000,7.7],[386467200000,8.1],[389059200000,8.5],[391737600000,9.5],[394329600000,8.5],[397008000000,8.7],[399686400000,9.5],[402278400000,9.7],[404956800000,10],[407548800000,10.2],[410227200000,11.1],[412905600000,9.8],[415324800000,10.4],[418003200000,10.9],[420595200000,12.3],[423273600000,11.3],[425865600000,10.1],[428544000000,9.3],[431222400000,9.3],[433814400000,9.4],[436492800000,9.3],[439084800000,8.7],[441763200000,9.1],[444441600000,8.3],[446947200000,8.3],[449625600000,8.2],[452217600000,9.1],[454896000000,7.5],[457488000000,7.5],[460166400000,7.3],[462844800000,7.6],[465436800000,7.2],[468115200000,7.2],[470707200000,7.3],[473385600000,6.8],[476064000000,7.1],[478483200000,7.1],[481161600000,6.9],[483753600000,6.9],[486432000000,6.6],[489024000000,6.9],[491702400000,7.1],[494380800000,6.9],[496972800000,7.1],[499651200000,7],[502243200000,6.8],[504921600000,6.7],[507600000000,6.9],[510019200000,6.8],[512697600000,6.7],[515289600000,6.8],[517968000000,7],[520560000000,6.9],[523238400000,7.1],[525916800000,7.4],[528508800000,7],[531187200000,7.1],[533779200000,7.1],[536457600000,6.9],[539136000000,6.6],[541555200000,6.6],[544233600000,7.1],[546825600000,6.6],[549504000000,6.5],[552096000000,6.5],[554774400000,6.4],[557452800000,6],[560044800000,6.3],[562723200000,6.2],[565315200000,6],[567993600000,6.2],[570672000000,6.3],[573177600000,6.4],[575856000000,5.9],[578448000000,5.9],[581126400000,5.8],[583718400000,6.1],[586396800000,5.9],[589075200000,5.7],[591667200000,5.6],[594345600000,5.7],[596937600000,5.9],[599616000000,5.6],[602294400000,5.4],[604713600000,5.4],[607392000000,5.4],[609984000000,5.3],[612662400000,5.4],[615254400000,5.6],[617932800000,5],[620611200000,4.9],[623203200000,4.9],[625881600000,4.8],[628473600000,4.9],[631152000000,5.1],[633830400000,5.3],[636249600000,5.1],[638928000000,4.8],[641520000000,5.2],[644198400000,5.2],[646790400000,5.4],[649468800000,5.4],[652147200000,5.6],[654739200000,5.8],[657417600000,5.7],[660009600000,5.9],[662688000000,6],[665366400000,6.2],[667785600000,6.7],[670464000000,6.6],[673056000000,6.4],[675734400000,6.9],[678326400000,7],[681004800000,7.3],[683683200000,6.8],[686275200000,7.2],[688953600000,7.5],[691545600000,7.8],[694224000000,8.1],[696902400000,8.2],[699408000000,8.3],[702086400000,8.5],[704678400000,8.8],[707356800000,8.7],[709948800000,8.6],[712627200000,8.8],[715305600000,8.6],[717897600000,9],[720576000000,9],[723168000000,9.3],[725846400000,8.6],[728524800000,8.5],[730944000000,8.5],[733622400000,8.4],[736214400000,8.1],[738892800000,8.3],[741484800000,8.2],[744163200000,8.2],[746841600000,8.3],[749433600000,8],[752112000000,8.3],[754704000000,8.3],[757382400000,8.6],[760060800000,9.2],[762480000000,9.3],[765158400000,9.1],[767750400000,9.2],[770428800000,9.3],[773020800000,9],[775699200000,8.9],[778377600000,9.2],[780969600000,10],[783648000000,9],[786240000000,8.7],[788918400000,8],[791596800000,8.1],[794016000000,8.3],[796694400000,8.3],[799286400000,9.1],[801964800000,7.9],[804556800000,8.5],[807235200000,8.3],[809913600000,7.9],[812505600000,8.2],[815184000000,8],[817776000000,8.3],[820454400000,8.3],[823132800000,7.8],[825638400000,8.3],[828316800000,8.6],[830908800000,8.6],[833587200000,8.3],[836179200000,8.3],[838857600000,8.4],[841536000000,8.5],[844128000000,8.3],[846806400000,7.7],[849398400000,7.8],[852076800000,7.8],[854755200000,8.1],[857174400000,7.9],[859852800000,8.3],[862444800000,8],[865123200000,8],[867715200000,8.3],[870393600000,7.8],[873072000000,8.2],[875664000000,7.7],[878342400000,7.6],[880934400000,7.5],[883612800000,7.4],[886291200000,7],[888710400000,6.8],[891388800000,6.7],[893980800000,6],[896659200000,6.9],[899251200000,6.7],[901929600000,6.8],[904608000000,6.7],[907200000000,5.8],[909878400000,6.6],[912470400000,6.8],[915148800000,6.9],[917827200000,6.8],[920246400000,6.8],[922924800000,6.2],[925516800000,6.5],[928195200000,6.3],[930787200000,5.8],[933465600000,6.5],[936144000000,6],[938736000000,6.1],[941414400000,6.2],[944006400000,5.8],[946684800000,5.8],[949363200000,6.1],[951868800000,6],[954547200000,6.1],[957139200000,5.8],[959817600000,5.7],[962409600000,6],[965088000000,6.3],[967766400000,5.2],[970358400000,6.1],[973036800000,6.1],[975628800000,6],[978307200000,5.8],[980985600000,6.1],[983404800000,6.6],[986083200000,5.9],[988675200000,6.3],[991353600000,6],[993945600000,6.8],[996624000000,6.9],[999302400000,7.2],[1001894400000,7.3],[1004572800000,7.7],[1007164800000,8.2],[1009843200000,8.4],[1012521600000,8.3],[1014940800000,8.4],[1017619200000,8.9],[1020211200000,9.5],[1022889600000,11],[1025481600000,8.9],[1028160000000,9],[1030838400000,9.5],[1033430400000,9.6],[1036108800000,9.3],[1038700800000,9.6],[1041379200000,9.6],[1044057600000,9.5],[1046476800000,9.7],[1049155200000,10.2],[1051747200000,9.9],[1054425600000,11.5],[1057017600000,10.3],[1059696000000,10.1],[1062374400000,10.2],[1064966400000,10.4],[1067644800000,10.3],[1070236800000,10.4],[1072915200000,10.6],[1075593600000,10.2],[1078099200000,10.2],[1080777600000,9.5],[1083369600000,9.9],[1086048000000,11],[1088640000000,8.9],[1091318400000,9.2],[1093996800000,9.6],[1096588800000,9.5],[1099267200000,9.7],[1101859200000,9.5],[1104537600000,9.4],[1107216000000,9.2],[1109635200000,9.3],[1112313600000,9],[1114905600000,9.1],[1117584000000,9],[1120176000000,8.8],[1122854400000,9.2],[1125532800000,8.4],[1128124800000,8.6],[1130803200000,8.5],[1133395200000,8.7],[1136073600000,8.6],[1138752000000,9.1],[1141171200000,8.7],[1143849600000,8.4],[1146441600000,8.5],[1149120000000,7.3],[1151712000000,8],[1154390400000,8.4],[1157068800000,8],[1159660800000,7.9],[1162339200000,8.3],[1164931200000,7.5],[1167609600000,8.3],[1170288000000,8.5],[1172707200000,9.1],[1175385600000,8.6],[1177977600000,8.2],[1180656000000,7.7],[1183248000000,8.7],[1185926400000,8.8],[1188604800000,8.7],[1191196800000,8.4],[1193875200000,8.6],[1196467200000,8.4],[1199145600000,9],[1201824000000,8.7],[1204329600000,8.7],[1207008000000,9.4],[1209600000000,7.9],[1212278400000,9],[1214870400000,9.7],[1217548800000,9.7],[1220227200000,10.2],[1222819200000,10.4],[1225497600000,9.8],[1228089600000,10.5],[1230768000000,10.7],[1233446400000,11.7],[1235865600000,12.3],[1238544000000,13.1],[1241136000000,14.2],[1243814400000,17.2],[1246406400000,16],[1249084800000,16.3],[1251763200000,17.8],[1254355200000,18.9],[1257033600000,19.8],[1259625600000,20.1],[1262304000000,20],[1264982400000,19.9],[1267401600000,20.4],[1270080000000,22.1],[1272672000000,22.3],[1275350400000,25.2],[1277942400000,22.3],[1280620800000,21],[1283299200000,20.3],[1285891200000,21.2],[1288569600000,21],[1291161600000,21.9],[1293840000000,21.5],[1296518400000,21.1],[1298937600000,21.5],[1301616000000,20.9],[1304208000000,21.6],[1306886400000,22.4],[1309478400000,22],[1312156800000,22.4],[1314835200000,22],[1317427200000,20.6],[1320105600000,20.8],[1322697600000,20.5],[1325376000000,20.8],[1328054400000,19.7],[1330560000000,19.2],[1333238400000,19.1],[1335830400000,19.9],[1338508800000,20.4],[1341100800000,17.5],[1343779200000,18.4],[1346457600000,18.8],[1349049600000,19.9],[1351728000000,18.6],[1354320000000,17.7],[1356998400000,15.8],[1359676800000,17.2],[1362096000000,17.6],[1364774400000,17.1],[1367366400000,17.1],[1370044800000,17],[1372636800000,16.2],[1375315200000,16.5],[1377993600000,16.5],[1380585600000,16.3],[1383264000000,17.1],[1385856000000,17.3],[1388534400000,15.4],[1391212800000,15.9],[1393632000000,15.8],[1396310400000,15.7],[1398902400000,14.6],[1401580800000,13.8],[1404172800000,13.1],[1406851200000,12.9],[1409529600000,13.4],[1412121600000,13.6],[1414800000000,13],[1417392000000,12.9],[1420070400000,13.2],[1422748800000,12.9],[1425168000000,12],[1427846400000,11.5]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"title\":{\"text\":\"Median duration of unemployment\"},\"subtitle\":{\"text\":\"in weeks\"}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_theme.html","id":null,"dir":"Reference","previous_headings":"","what":"Theme for charts — ax_theme","title":"Theme for charts — ax_theme","text":"Theme charts","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_theme.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Theme for charts — ax_theme","text":"","code":"ax_theme(ax, mode = c(\"light\", \"dark\"), palette = NULL, monochrome = NULL, ...)"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_theme.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Theme for charts — ax_theme","text":"ax apexchart() htmlwidget object. mode use light dark theme. palette Character. Available palettes: \"palette1\" \"palette10\". monochrome list parameters. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_theme.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Theme for charts — ax_theme","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_theme.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Theme for charts — ax_theme","text":"See https://apexcharts.com/docs/options/theme/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_theme.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Theme for charts — ax_theme","text":"","code":"data(\"mpg\", package = \"ggplot2\") data(\"diamonds\", package = \"ggplot2\") # Dark mode apex( data = mpg, mapping = aes(x = manufacturer) ) %>% ax_theme(mode = \"dark\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":[],\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":18},{\"x\":\"chevrolet\",\"y\":19},{\"x\":\"dodge\",\"y\":37},{\"x\":\"ford\",\"y\":25},{\"x\":\"honda\",\"y\":9},{\"x\":\"hyundai\",\"y\":14},{\"x\":\"jeep\",\"y\":8},{\"x\":\"land rover\",\"y\":4},{\"x\":\"lincoln\",\"y\":3},{\"x\":\"mercury\",\"y\":4},{\"x\":\"nissan\",\"y\":13},{\"x\":\"pontiac\",\"y\":5},{\"x\":\"subaru\",\"y\":14},{\"x\":\"toyota\",\"y\":34},{\"x\":\"volkswagen\",\"y\":27}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"theme\":{\"mode\":\"dark\"}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # Use predefined palette (1 to 10) apex( data = diamonds, mapping = aes(x = color, fill = cut) ) %>% ax_theme(palette = \"palette2\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"Fair\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":163},{\"x\":\"E\",\"y\":224},{\"x\":\"F\",\"y\":312},{\"x\":\"G\",\"y\":314},{\"x\":\"H\",\"y\":303},{\"x\":\"I\",\"y\":175},{\"x\":\"J\",\"y\":119}]},{\"name\":\"Good\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":662},{\"x\":\"E\",\"y\":933},{\"x\":\"F\",\"y\":909},{\"x\":\"G\",\"y\":871},{\"x\":\"H\",\"y\":702},{\"x\":\"I\",\"y\":522},{\"x\":\"J\",\"y\":307}]},{\"name\":\"Very Good\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":1513},{\"x\":\"E\",\"y\":2400},{\"x\":\"F\",\"y\":2164},{\"x\":\"G\",\"y\":2299},{\"x\":\"H\",\"y\":1824},{\"x\":\"I\",\"y\":1204},{\"x\":\"J\",\"y\":678}]},{\"name\":\"Premium\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":1603},{\"x\":\"E\",\"y\":2337},{\"x\":\"F\",\"y\":2331},{\"x\":\"G\",\"y\":2924},{\"x\":\"H\",\"y\":2360},{\"x\":\"I\",\"y\":1428},{\"x\":\"J\",\"y\":808}]},{\"name\":\"Ideal\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":2834},{\"x\":\"E\",\"y\":3903},{\"x\":\"F\",\"y\":3826},{\"x\":\"G\",\"y\":4884},{\"x\":\"H\",\"y\":3115},{\"x\":\"I\",\"y\":2093},{\"x\":\"J\",\"y\":896}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"theme\":{\"mode\":\"light\",\"palette\":\"palette2\"}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"D\",\"max\":\"J\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # monochrome palette apex( data = diamonds, mapping = aes(x = color, fill = cut) ) %>% ax_theme(monochrome = list(enabled = TRUE, color = \"#0B6121\")) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"Fair\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":163},{\"x\":\"E\",\"y\":224},{\"x\":\"F\",\"y\":312},{\"x\":\"G\",\"y\":314},{\"x\":\"H\",\"y\":303},{\"x\":\"I\",\"y\":175},{\"x\":\"J\",\"y\":119}]},{\"name\":\"Good\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":662},{\"x\":\"E\",\"y\":933},{\"x\":\"F\",\"y\":909},{\"x\":\"G\",\"y\":871},{\"x\":\"H\",\"y\":702},{\"x\":\"I\",\"y\":522},{\"x\":\"J\",\"y\":307}]},{\"name\":\"Very Good\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":1513},{\"x\":\"E\",\"y\":2400},{\"x\":\"F\",\"y\":2164},{\"x\":\"G\",\"y\":2299},{\"x\":\"H\",\"y\":1824},{\"x\":\"I\",\"y\":1204},{\"x\":\"J\",\"y\":678}]},{\"name\":\"Premium\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":1603},{\"x\":\"E\",\"y\":2337},{\"x\":\"F\",\"y\":2331},{\"x\":\"G\",\"y\":2924},{\"x\":\"H\",\"y\":2360},{\"x\":\"I\",\"y\":1428},{\"x\":\"J\",\"y\":808}]},{\"name\":\"Ideal\",\"type\":\"bar\",\"data\":[{\"x\":\"D\",\"y\":2834},{\"x\":\"E\",\"y\":3903},{\"x\":\"F\",\"y\":3826},{\"x\":\"G\",\"y\":4884},{\"x\":\"H\",\"y\":3115},{\"x\":\"I\",\"y\":2093},{\"x\":\"J\",\"y\":896}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"theme\":{\"mode\":\"light\",\"monochrome\":{\"enabled\":true,\"color\":\"#0B6121\"}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"D\",\"max\":\"J\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_title.html","id":null,"dir":"Reference","previous_headings":"","what":"Chart's title — ax_title","title":"Chart's title — ax_title","text":"Chart's title","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_title.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Chart's title — ax_title","text":"","code":"ax_title( ax, text = NULL, align = NULL, margin = NULL, offsetX = NULL, offsetY = NULL, floating = NULL, style = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_title.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Chart's title — ax_title","text":"ax apexchart() htmlwidget object. text Text display title chart. align Alignment subtitle relative chart area. Possible Options: \"left\", \"center\" \"right\". margin Numeric. Vertical spacing around title text. offsetX Numeric. Sets left offset subtitle text. offsetY Numeric. Sets top offset subtitle text floating Logical. floating option take subtitle text chart area make float top chart. style List two items: fontSize (Font Size title text) color (Fore color title text). ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_title.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Chart's title — ax_title","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_title.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Chart's title — ax_title","text":"See https://apexcharts.com/docs/options/title/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_title.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Chart's title — ax_title","text":"","code":"data(\"economics\", package = \"ggplot2\") apex( data = economics, mapping = aes(x = date, y = uempmed), type = \"line\" ) %>% ax_title( text = \"Median duration of unemployment, in weeks\" ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[-79056000000,4.5],[-76377600000,4.7],[-73699200000,4.6],[-71107200000,4.9],[-68428800000,4.7],[-65836800000,4.8],[-63158400000,5.1],[-60480000000,4.5],[-57974400000,4.1],[-55296000000,4.6],[-52704000000,4.4],[-50025600000,4.4],[-47433600000,4.5],[-44755200000,4.2],[-42076800000,4.6],[-39484800000,4.8],[-36806400000,4.4],[-34214400000,4.4],[-31536000000,4.4],[-28857600000,4.9],[-26438400000,4],[-23760000000,4],[-21168000000,4.2],[-18489600000,4.4],[-15897600000,4.4],[-13219200000,4.4],[-10540800000,4.7],[-7948800000,4.5],[-5270400000,4.8],[-2678400000,4.6],[0,4.6],[2678400000,4.5],[5097600000,4.6],[7776000000,4.1],[10368000000,4.7],[13046400000,4.9],[15638400000,5.1],[18316800000,5.4],[20995200000,5.2],[23587200000,5.2],[26265600000,5.6],[28857600000,5.9],[31536000000,6.2],[34214400000,6.3],[36633600000,6.4],[39312000000,6.5],[41904000000,6.7],[44582400000,5.7],[47174400000,6.2],[49852800000,6.4],[52531200000,5.8],[55123200000,6.5],[57801600000,6.4],[60393600000,6.2],[63072000000,6.2],[65750400000,6.6],[68256000000,6.6],[70934400000,6.7],[73526400000,6.6],[76204800000,5.4],[78796800000,6.1],[81475200000,6],[84153600000,5.6],[86745600000,5.7],[89424000000,5.7],[92016000000,6.1],[94694400000,5.7],[97372800000,5.2],[99792000000,5.5],[102470400000,5],[105062400000,4.9],[107740800000,5],[110332800000,5.2],[113011200000,4.9],[115689600000,5.4],[118281600000,5.5],[120960000000,5.1],[123552000000,4.7],[126230400000,5],[128908800000,5.1],[131328000000,4.8],[134006400000,5],[136598400000,4.6],[139276800000,5.3],[141868800000,5.7],[144547200000,5],[147225600000,5.3],[149817600000,5.5],[152496000000,5.2],[155088000000,5.7],[157766400000,6.3],[160444800000,7.1],[162864000000,7.2],[165542400000,8.7],[168134400000,9.4],[170812800000,8.8],[173404800000,8.6],[176083200000,9.2],[178761600000,9.2],[181353600000,8.6],[184032000000,9.5],[186624000000,9],[189302400000,9],[191980800000,8.2],[194486400000,8.7],[197164800000,8.2],[199756800000,8.3],[202435200000,7.8],[205027200000,7.7],[207705600000,7.9],[210384000000,7.8],[212976000000,7.7],[215654400000,8.4],[218246400000,8],[220924800000,7.5],[223603200000,7.2],[226022400000,7.2],[228700800000,7.3],[231292800000,7.9],[233971200000,6.2],[236563200000,7.1],[239241600000,7],[241920000000,6.7],[244512000000,6.9],[247190400000,7],[249782400000,6.8],[252460800000,6.5],[255139200000,6.7],[257558400000,6.2],[260236800000,6.1],[262828800000,5.7],[265507200000,6],[268099200000,5.8],[270777600000,5.8],[273456000000,5.6],[276048000000,5.9],[278726400000,5.5],[281318400000,5.6],[283996800000,5.9],[286675200000,5.9],[289094400000,5.9],[291772800000,5.4],[294364800000,5.6],[297043200000,5.6],[299635200000,5.9],[302313600000,4.8],[304992000000,5.5],[307584000000,5.5],[310262400000,5.3],[312854400000,5.7],[315532800000,5.3],[318211200000,5.8],[320716800000,6],[323395200000,5.8],[325987200000,5.7],[328665600000,6.4],[331257600000,7],[333936000000,7.5],[336614400000,7.7],[339206400000,7.5],[341884800000,7.7],[344476800000,7.5],[347155200000,7.4],[349833600000,7.1],[352252800000,7.1],[354931200000,7.4],[357523200000,6.9],[360201600000,6.6],[362793600000,7.1],[365472000000,7.2],[368150400000,6.8],[370742400000,6.8],[373420800000,6.9],[376012800000,6.9],[378691200000,7.1],[381369600000,7.5],[383788800000,7.7],[386467200000,8.1],[389059200000,8.5],[391737600000,9.5],[394329600000,8.5],[397008000000,8.7],[399686400000,9.5],[402278400000,9.7],[404956800000,10],[407548800000,10.2],[410227200000,11.1],[412905600000,9.8],[415324800000,10.4],[418003200000,10.9],[420595200000,12.3],[423273600000,11.3],[425865600000,10.1],[428544000000,9.3],[431222400000,9.3],[433814400000,9.4],[436492800000,9.3],[439084800000,8.7],[441763200000,9.1],[444441600000,8.3],[446947200000,8.3],[449625600000,8.2],[452217600000,9.1],[454896000000,7.5],[457488000000,7.5],[460166400000,7.3],[462844800000,7.6],[465436800000,7.2],[468115200000,7.2],[470707200000,7.3],[473385600000,6.8],[476064000000,7.1],[478483200000,7.1],[481161600000,6.9],[483753600000,6.9],[486432000000,6.6],[489024000000,6.9],[491702400000,7.1],[494380800000,6.9],[496972800000,7.1],[499651200000,7],[502243200000,6.8],[504921600000,6.7],[507600000000,6.9],[510019200000,6.8],[512697600000,6.7],[515289600000,6.8],[517968000000,7],[520560000000,6.9],[523238400000,7.1],[525916800000,7.4],[528508800000,7],[531187200000,7.1],[533779200000,7.1],[536457600000,6.9],[539136000000,6.6],[541555200000,6.6],[544233600000,7.1],[546825600000,6.6],[549504000000,6.5],[552096000000,6.5],[554774400000,6.4],[557452800000,6],[560044800000,6.3],[562723200000,6.2],[565315200000,6],[567993600000,6.2],[570672000000,6.3],[573177600000,6.4],[575856000000,5.9],[578448000000,5.9],[581126400000,5.8],[583718400000,6.1],[586396800000,5.9],[589075200000,5.7],[591667200000,5.6],[594345600000,5.7],[596937600000,5.9],[599616000000,5.6],[602294400000,5.4],[604713600000,5.4],[607392000000,5.4],[609984000000,5.3],[612662400000,5.4],[615254400000,5.6],[617932800000,5],[620611200000,4.9],[623203200000,4.9],[625881600000,4.8],[628473600000,4.9],[631152000000,5.1],[633830400000,5.3],[636249600000,5.1],[638928000000,4.8],[641520000000,5.2],[644198400000,5.2],[646790400000,5.4],[649468800000,5.4],[652147200000,5.6],[654739200000,5.8],[657417600000,5.7],[660009600000,5.9],[662688000000,6],[665366400000,6.2],[667785600000,6.7],[670464000000,6.6],[673056000000,6.4],[675734400000,6.9],[678326400000,7],[681004800000,7.3],[683683200000,6.8],[686275200000,7.2],[688953600000,7.5],[691545600000,7.8],[694224000000,8.1],[696902400000,8.2],[699408000000,8.3],[702086400000,8.5],[704678400000,8.8],[707356800000,8.7],[709948800000,8.6],[712627200000,8.8],[715305600000,8.6],[717897600000,9],[720576000000,9],[723168000000,9.3],[725846400000,8.6],[728524800000,8.5],[730944000000,8.5],[733622400000,8.4],[736214400000,8.1],[738892800000,8.3],[741484800000,8.2],[744163200000,8.2],[746841600000,8.3],[749433600000,8],[752112000000,8.3],[754704000000,8.3],[757382400000,8.6],[760060800000,9.2],[762480000000,9.3],[765158400000,9.1],[767750400000,9.2],[770428800000,9.3],[773020800000,9],[775699200000,8.9],[778377600000,9.2],[780969600000,10],[783648000000,9],[786240000000,8.7],[788918400000,8],[791596800000,8.1],[794016000000,8.3],[796694400000,8.3],[799286400000,9.1],[801964800000,7.9],[804556800000,8.5],[807235200000,8.3],[809913600000,7.9],[812505600000,8.2],[815184000000,8],[817776000000,8.3],[820454400000,8.3],[823132800000,7.8],[825638400000,8.3],[828316800000,8.6],[830908800000,8.6],[833587200000,8.3],[836179200000,8.3],[838857600000,8.4],[841536000000,8.5],[844128000000,8.3],[846806400000,7.7],[849398400000,7.8],[852076800000,7.8],[854755200000,8.1],[857174400000,7.9],[859852800000,8.3],[862444800000,8],[865123200000,8],[867715200000,8.3],[870393600000,7.8],[873072000000,8.2],[875664000000,7.7],[878342400000,7.6],[880934400000,7.5],[883612800000,7.4],[886291200000,7],[888710400000,6.8],[891388800000,6.7],[893980800000,6],[896659200000,6.9],[899251200000,6.7],[901929600000,6.8],[904608000000,6.7],[907200000000,5.8],[909878400000,6.6],[912470400000,6.8],[915148800000,6.9],[917827200000,6.8],[920246400000,6.8],[922924800000,6.2],[925516800000,6.5],[928195200000,6.3],[930787200000,5.8],[933465600000,6.5],[936144000000,6],[938736000000,6.1],[941414400000,6.2],[944006400000,5.8],[946684800000,5.8],[949363200000,6.1],[951868800000,6],[954547200000,6.1],[957139200000,5.8],[959817600000,5.7],[962409600000,6],[965088000000,6.3],[967766400000,5.2],[970358400000,6.1],[973036800000,6.1],[975628800000,6],[978307200000,5.8],[980985600000,6.1],[983404800000,6.6],[986083200000,5.9],[988675200000,6.3],[991353600000,6],[993945600000,6.8],[996624000000,6.9],[999302400000,7.2],[1001894400000,7.3],[1004572800000,7.7],[1007164800000,8.2],[1009843200000,8.4],[1012521600000,8.3],[1014940800000,8.4],[1017619200000,8.9],[1020211200000,9.5],[1022889600000,11],[1025481600000,8.9],[1028160000000,9],[1030838400000,9.5],[1033430400000,9.6],[1036108800000,9.3],[1038700800000,9.6],[1041379200000,9.6],[1044057600000,9.5],[1046476800000,9.7],[1049155200000,10.2],[1051747200000,9.9],[1054425600000,11.5],[1057017600000,10.3],[1059696000000,10.1],[1062374400000,10.2],[1064966400000,10.4],[1067644800000,10.3],[1070236800000,10.4],[1072915200000,10.6],[1075593600000,10.2],[1078099200000,10.2],[1080777600000,9.5],[1083369600000,9.9],[1086048000000,11],[1088640000000,8.9],[1091318400000,9.2],[1093996800000,9.6],[1096588800000,9.5],[1099267200000,9.7],[1101859200000,9.5],[1104537600000,9.4],[1107216000000,9.2],[1109635200000,9.3],[1112313600000,9],[1114905600000,9.1],[1117584000000,9],[1120176000000,8.8],[1122854400000,9.2],[1125532800000,8.4],[1128124800000,8.6],[1130803200000,8.5],[1133395200000,8.7],[1136073600000,8.6],[1138752000000,9.1],[1141171200000,8.7],[1143849600000,8.4],[1146441600000,8.5],[1149120000000,7.3],[1151712000000,8],[1154390400000,8.4],[1157068800000,8],[1159660800000,7.9],[1162339200000,8.3],[1164931200000,7.5],[1167609600000,8.3],[1170288000000,8.5],[1172707200000,9.1],[1175385600000,8.6],[1177977600000,8.2],[1180656000000,7.7],[1183248000000,8.7],[1185926400000,8.8],[1188604800000,8.7],[1191196800000,8.4],[1193875200000,8.6],[1196467200000,8.4],[1199145600000,9],[1201824000000,8.7],[1204329600000,8.7],[1207008000000,9.4],[1209600000000,7.9],[1212278400000,9],[1214870400000,9.7],[1217548800000,9.7],[1220227200000,10.2],[1222819200000,10.4],[1225497600000,9.8],[1228089600000,10.5],[1230768000000,10.7],[1233446400000,11.7],[1235865600000,12.3],[1238544000000,13.1],[1241136000000,14.2],[1243814400000,17.2],[1246406400000,16],[1249084800000,16.3],[1251763200000,17.8],[1254355200000,18.9],[1257033600000,19.8],[1259625600000,20.1],[1262304000000,20],[1264982400000,19.9],[1267401600000,20.4],[1270080000000,22.1],[1272672000000,22.3],[1275350400000,25.2],[1277942400000,22.3],[1280620800000,21],[1283299200000,20.3],[1285891200000,21.2],[1288569600000,21],[1291161600000,21.9],[1293840000000,21.5],[1296518400000,21.1],[1298937600000,21.5],[1301616000000,20.9],[1304208000000,21.6],[1306886400000,22.4],[1309478400000,22],[1312156800000,22.4],[1314835200000,22],[1317427200000,20.6],[1320105600000,20.8],[1322697600000,20.5],[1325376000000,20.8],[1328054400000,19.7],[1330560000000,19.2],[1333238400000,19.1],[1335830400000,19.9],[1338508800000,20.4],[1341100800000,17.5],[1343779200000,18.4],[1346457600000,18.8],[1349049600000,19.9],[1351728000000,18.6],[1354320000000,17.7],[1356998400000,15.8],[1359676800000,17.2],[1362096000000,17.6],[1364774400000,17.1],[1367366400000,17.1],[1370044800000,17],[1372636800000,16.2],[1375315200000,16.5],[1377993600000,16.5],[1380585600000,16.3],[1383264000000,17.1],[1385856000000,17.3],[1388534400000,15.4],[1391212800000,15.9],[1393632000000,15.8],[1396310400000,15.7],[1398902400000,14.6],[1401580800000,13.8],[1404172800000,13.1],[1406851200000,12.9],[1409529600000,13.4],[1412121600000,13.6],[1414800000000,13],[1417392000000,12.9],[1420070400000,13.2],[1422748800000,12.9],[1425168000000,12],[1427846400000,11.5]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"title\":{\"text\":\"Median duration of unemployment, in weeks\"}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_tooltip.html","id":null,"dir":"Reference","previous_headings":"","what":"Tooltip options — ax_tooltip","title":"Tooltip options — ax_tooltip","text":"Tooltip options","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_tooltip.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Tooltip options — ax_tooltip","text":"","code":"ax_tooltip( ax, enabled = NULL, shared = NULL, followCursor = NULL, intersect = NULL, inverseOrder = NULL, custom = NULL, fillSeriesColor = NULL, onDatasetHover = NULL, theme = NULL, x = NULL, y = NULL, z = NULL, marker = NULL, items = NULL, fixed = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_tooltip.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Tooltip options — ax_tooltip","text":"ax apexchart() htmlwidget object. enabled Logical. Show tooltip user hovers chart area. shared Logical. multiple series, show shared tooltip. followCursor Logical. Follow user's cursor position instead putting tooltip actual data points. intersect Logical. Show tooltip user hovers exactly datapoint. inverseOrder Logical. multiple series, shared tooltip, inverse order series (better comparison stacked charts). custom JS function. Draw custom html tooltip instead default one based values provided function arguments. fillSeriesColor Logical. enabled, fill tooltip background corresponding series color. onDatasetHover list parameters. theme list parameters. x list parameters. y list parameters. z list parameters. marker list parameters. items list parameters. fixed list parameters. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_tooltip.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Tooltip options — ax_tooltip","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_tooltip.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Tooltip options — ax_tooltip","text":"See https://apexcharts.com/docs/options/tooltip/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_tooltip.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Tooltip options — ax_tooltip","text":"","code":"data(\"mpg\", package = \"ggplot2\") # Hide tooltip apex( data = mpg, mapping = aes(x = manufacturer, fill = year) ) %>% ax_tooltip(enabled = FALSE) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"1999\",\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":9},{\"x\":\"chevrolet\",\"y\":7},{\"x\":\"dodge\",\"y\":16},{\"x\":\"ford\",\"y\":15},{\"x\":\"honda\",\"y\":5},{\"x\":\"hyundai\",\"y\":6},{\"x\":\"jeep\",\"y\":2},{\"x\":\"land rover\",\"y\":2},{\"x\":\"lincoln\",\"y\":2},{\"x\":\"mercury\",\"y\":2},{\"x\":\"nissan\",\"y\":6},{\"x\":\"pontiac\",\"y\":3},{\"x\":\"subaru\",\"y\":6},{\"x\":\"toyota\",\"y\":20},{\"x\":\"volkswagen\",\"y\":16}]},{\"name\":\"2008\",\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":9},{\"x\":\"chevrolet\",\"y\":12},{\"x\":\"dodge\",\"y\":21},{\"x\":\"ford\",\"y\":10},{\"x\":\"honda\",\"y\":4},{\"x\":\"hyundai\",\"y\":8},{\"x\":\"jeep\",\"y\":6},{\"x\":\"land rover\",\"y\":2},{\"x\":\"lincoln\",\"y\":1},{\"x\":\"mercury\",\"y\":2},{\"x\":\"nissan\",\"y\":7},{\"x\":\"pontiac\",\"y\":2},{\"x\":\"subaru\",\"y\":8},{\"x\":\"toyota\",\"y\":14},{\"x\":\"volkswagen\",\"y\":11}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true,\"enabled\":false},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # Share between series apex( data = mpg, mapping = aes(x = manufacturer, fill = year) ) %>% ax_tooltip(shared = TRUE) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"1999\",\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":9},{\"x\":\"chevrolet\",\"y\":7},{\"x\":\"dodge\",\"y\":16},{\"x\":\"ford\",\"y\":15},{\"x\":\"honda\",\"y\":5},{\"x\":\"hyundai\",\"y\":6},{\"x\":\"jeep\",\"y\":2},{\"x\":\"land rover\",\"y\":2},{\"x\":\"lincoln\",\"y\":2},{\"x\":\"mercury\",\"y\":2},{\"x\":\"nissan\",\"y\":6},{\"x\":\"pontiac\",\"y\":3},{\"x\":\"subaru\",\"y\":6},{\"x\":\"toyota\",\"y\":20},{\"x\":\"volkswagen\",\"y\":16}]},{\"name\":\"2008\",\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":9},{\"x\":\"chevrolet\",\"y\":12},{\"x\":\"dodge\",\"y\":21},{\"x\":\"ford\",\"y\":10},{\"x\":\"honda\",\"y\":4},{\"x\":\"hyundai\",\"y\":8},{\"x\":\"jeep\",\"y\":6},{\"x\":\"land rover\",\"y\":2},{\"x\":\"lincoln\",\"y\":1},{\"x\":\"mercury\",\"y\":2},{\"x\":\"nissan\",\"y\":7},{\"x\":\"pontiac\",\"y\":2},{\"x\":\"subaru\",\"y\":8},{\"x\":\"toyota\",\"y\":14},{\"x\":\"volkswagen\",\"y\":11}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # Fixed tooltip data(\"economics\", package = \"ggplot2\") apex( data = economics, mapping = aes(x = date, y = psavert), type = \"line\" ) %>% ax_tooltip( fixed = list(enabled = TRUE, position = \"topLeft\") ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"psavert\",\"type\":\"line\",\"data\":[[-79056000000,12.6],[-76377600000,12.6],[-73699200000,11.9],[-71107200000,12.9],[-68428800000,12.8],[-65836800000,11.8],[-63158400000,11.7],[-60480000000,12.3],[-57974400000,11.7],[-55296000000,12.3],[-52704000000,12],[-50025600000,11.7],[-47433600000,10.7],[-44755200000,10.5],[-42076800000,10.6],[-39484800000,10.8],[-36806400000,10.6],[-34214400000,11.1],[-31536000000,10.3],[-28857600000,9.7],[-26438400000,10.2],[-23760000000,9.7],[-21168000000,10.1],[-18489600000,11.1],[-15897600000,11.8],[-13219200000,11.5],[-10540800000,11.6],[-7948800000,11.4],[-5270400000,11.6],[-2678400000,11.8],[0,11.8],[2678400000,11.7],[5097600000,12.4],[7776000000,13.3],[10368000000,12.4],[13046400000,12.3],[15638400000,13.5],[18316800000,13.4],[20995200000,12.9],[23587200000,13.1],[26265600000,13.6],[28857600000,13.2],[31536000000,13.3],[34214400000,13.3],[36633600000,13.5],[39312000000,13.2],[41904000000,13.6],[44582400000,14.7],[47174400000,13.8],[49852800000,13.6],[52531200000,13.3],[55123200000,13.3],[57801600000,13.1],[60393600000,13],[63072000000,12.5],[65750400000,12.8],[68256000000,11.8],[70934400000,11.5],[73526400000,11.7],[76204800000,11.7],[78796800000,11.7],[81475200000,12],[84153600000,12.2],[86745600000,13],[89424000000,13.6],[92016000000,13.7],[94694400000,12.4],[97372800000,12.5],[99792000000,12.7],[102470400000,13.2],[105062400000,13.2],[107740800000,13.6],[110332800000,13.2],[113011200000,13.9],[115689600000,13.1],[118281600000,14.4],[120960000000,14.4],[123552000000,14.8],[126230400000,14.3],[128908800000,14.2],[131328000000,13.4],[134006400000,13.1],[136598400000,12.8],[139276800000,12.8],[141868800000,12.8],[144547200000,12.1],[147225600000,12.9],[149817600000,13.4],[152496000000,13.8],[155088000000,14],[157766400000,13.2],[160444800000,12.5],[162864000000,12.7],[165542400000,14.2],[168134400000,17.3],[170812800000,14.3],[173404800000,12.6],[176083200000,13],[178761600000,13],[181353600000,13.4],[184032000000,12.7],[186624000000,12],[189302400000,11.7],[191980800000,12.3],[194486400000,12.2],[197164800000,11.7],[199756800000,12.3],[202435200000,11.4],[205027200000,11.7],[207705600000,11.7],[210384000000,11.4],[212976000000,11.1],[215654400000,11.4],[218246400000,10.6],[220924800000,10.6],[223603200000,9.3],[226022400000,10.5],[228700800000,10.5],[231292800000,10.3],[233971200000,10.6],[236563200000,10.5],[239241600000,10.9],[241920000000,11.1],[244512000000,11],[247190400000,11.2],[249782400000,11.4],[252460800000,11.9],[255139200000,11.1],[257558400000,11],[260236800000,10.8],[262828800000,10.3],[265507200000,10],[268099200000,10.9],[270777600000,10.5],[273456000000,10.6],[276048000000,10.7],[278726400000,10.5],[281318400000,10.4],[283996800000,11.1],[286675200000,11.1],[289094400000,11.2],[291772800000,11],[294364800000,10.3],[297043200000,9.9],[299635200000,10.6],[302313600000,9.7],[304992000000,9.4],[307584000000,9.7],[310262400000,9.7],[312854400000,10.1],[315532800000,9.9],[318211200000,10.1],[320716800000,10.2],[323395200000,11.3],[325987200000,11.4],[328665600000,11.2],[331257600000,11.3],[333936000000,11.3],[336614400000,11.7],[339206400000,11.3],[341884800000,11.6],[344476800000,11.4],[347155200000,10.9],[349833600000,10.8],[352252800000,10.8],[354931200000,10.9],[357523200000,11],[360201600000,10.8],[362793600000,12.3],[365472000000,12],[368150400000,12.4],[370742400000,13],[373420800000,13.2],[376012800000,12.5],[378691200000,12.7],[381369600000,12.1],[383788800000,12.2],[386467200000,12.9],[389059200000,12.3],[391737600000,12.3],[394329600000,12.5],[397008000000,12.6],[399686400000,11.8],[402278400000,11.3],[404956800000,10.9],[407548800000,10.9],[410227200000,11.1],[412905600000,11.1],[415324800000,10.6],[418003200000,10.3],[420595200000,9.9],[423273600000,9.1],[425865600000,9.6],[428544000000,9.2],[431222400000,9.6],[433814400000,9.7],[436492800000,10.3],[439084800000,10.1],[441763200000,10],[444441600000,11.7],[446947200000,11.5],[449625600000,11.5],[452217600000,11.1],[454896000000,11.1],[457488000000,11.6],[460166400000,11.8],[462844800000,11.8],[465436800000,11.7],[468115200000,10.9],[470707200000,11.2],[473385600000,10.3],[476064000000,9.1],[478483200000,8.7],[481161600000,9.9],[483753600000,11.1],[486432000000,9.6],[489024000000,9.1],[491702400000,8.2],[494380800000,7.3],[496972800000,9.1],[499651200000,9],[502243200000,8.6],[504921600000,8.6],[507600000000,9.3],[510019200000,9.9],[512697600000,9.7],[515289600000,9.3],[517968000000,9.4],[520560000000,9.3],[523238400000,9],[525916800000,7.2],[528508800000,8.4],[531187200000,8.8],[533779200000,7],[536457600000,9.7],[539136000000,8.5],[541555200000,8.5],[544233600000,4.5],[546825600000,8.2],[549504000000,7.7],[552096000000,7.5],[554774400000,7.2],[557452800000,7.6],[560044800000,8.3],[562723200000,8.5],[565315200000,8.7],[567993600000,8.1],[570672000000,8.6],[573177600000,8.2],[575856000000,8.8],[578448000000,8.4],[581126400000,8.4],[583718400000,8.6],[586396800000,8.4],[589075200000,8.9],[591667200000,8.6],[594345600000,8.4],[596937600000,8.3],[599616000000,8.5],[602294400000,9],[604713600000,9.5],[607392000000,8.4],[609984000000,8.1],[612662400000,8.2],[615254400000,8.2],[617932800000,7.6],[620611200000,8.1],[623203200000,8.5],[625881600000,8.6],[628473600000,7.8],[631152000000,8],[633830400000,8.6],[636249600000,8.3],[638928000000,8.8],[641520000000,8.7],[644198400000,8.6],[646790400000,8.7],[649468800000,8.1],[652147200000,8.1],[654739200000,7.8],[657417600000,7.9],[660009600000,8.8],[662688000000,9.3],[665366400000,8.8],[667785600000,8],[670464000000,8.6],[673056000000,8.4],[675734400000,8.9],[678326400000,8.2],[681004800000,8.6],[683683200000,8.8],[686275200000,9.3],[688953600000,9],[691545600000,9.7],[694224000000,9.4],[696902400000,9.8],[699408000000,9.7],[702086400000,9.9],[704678400000,9.9],[707356800000,10.1],[709948800000,9.6],[712627200000,9.7],[715305600000,8.7],[717897600000,8],[720576000000,8],[723168000000,10.6],[725846400000,8.6],[728524800000,8.9],[730944000000,8.9],[733622400000,8.7],[736214400000,8.3],[738892800000,7.8],[741484800000,7.6],[744163200000,7.7],[746841600000,6.9],[749433600000,6.3],[752112000000,6.3],[754704000000,9.1],[757382400000,7.1],[760060800000,6.5],[762480000000,6.8],[765158400000,6.4],[767750400000,7.6],[770428800000,6.9],[773020800000,7],[775699200000,6.5],[778377600000,6.8],[780969600000,7.1],[783648000000,7],[786240000000,7.2],[788918400000,7.5],[791596800000,7.8],[794016000000,7.5],[796694400000,6.9],[799286400000,7.1],[801964800000,6.7],[804556800000,7.1],[807235200000,6.7],[809913600000,6.8],[812505600000,7.1],[815184000000,6.6],[817776000000,6.1],[820454400000,6.7],[823132800000,6.7],[825638400000,6.6],[828316800000,5.7],[830908800000,6.7],[833587200000,7.1],[836179200000,6.7],[838857600000,6.6],[841536000000,6.7],[844128000000,6.4],[846806400000,6.4],[849398400000,6.4],[852076800000,6.2],[854755200000,6.2],[857174400000,6.4],[859852800000,6.5],[862444800000,6.8],[865123200000,6.6],[867715200000,6.1],[870393600000,6],[873072000000,6.2],[875664000000,6.2],[878342400000,6.4],[880934400000,6.4],[883612800000,7.4],[886291200000,7.4],[888710400000,7.5],[891388800000,7.2],[893980800000,6.9],[896659200000,6.8],[899251200000,6.9],[901929600000,6.8],[904608000000,6.4],[907200000000,6.2],[909878400000,6.3],[912470400000,5.8],[915148800000,6.4],[917827200000,6.2],[920246400000,5.9],[922924800000,5.2],[925516800000,4.9],[928195200000,4.8],[930787200000,4.8],[933465600000,4.7],[936144000000,4.2],[938736000000,4.6],[941414400000,4.8],[944006400000,4.4],[946684800000,5.4],[949363200000,4.8],[951868800000,4.5],[954547200000,5],[957139200000,4.9],[959817600000,4.9],[962409600000,5.2],[965088000000,5.2],[967766400000,4.5],[970358400000,4.6],[973036800000,4.5],[975628800000,4.2],[978307200000,4.8],[980985600000,4.9],[983404800000,5.3],[986083200000,5],[988675200000,4.5],[991353600000,4.5],[993945600000,5.6],[996624000000,6.8],[999302400000,7],[1001894400000,3.4],[1004572800000,4.1],[1007164800000,4.5],[1009843200000,6.1],[1012521600000,5.8],[1014940800000,5.9],[1017619200000,5.8],[1020211200000,6.5],[1022889600000,6.4],[1025481600000,5.5],[1028160000000,5.4],[1030838400000,5.7],[1033430400000,5.7],[1036108800000,5.7],[1038700800000,5.5],[1041379200000,5.5],[1044057600000,5.6],[1046476800000,5.3],[1049155200000,5.3],[1051747200000,5.8],[1054425600000,5.6],[1057017600000,6.3],[1059696000000,6],[1062374400000,5.2],[1064966400000,5.3],[1067644800000,5.4],[1070236800000,5.4],[1072915200000,5],[1075593600000,5],[1078099200000,4.9],[1080777600000,5.3],[1083369600000,5.3],[1086048000000,5.8],[1088640000000,5.3],[1091318400000,5.2],[1093996800000,4.6],[1096588800000,4.5],[1099267200000,4.1],[1101859200000,6.9],[1104537600000,3.7],[1107216000000,3.4],[1109635200000,3.6],[1112313600000,3.1],[1114905600000,3.5],[1117584000000,2.9],[1120176000000,2.2],[1122854400000,2.7],[1125532800000,2.7],[1128124800000,3.1],[1130803200000,3.5],[1133395200000,3.7],[1136073600000,4.2],[1138752000000,4.2],[1141171200000,4.2],[1143849600000,4],[1146441600000,3.8],[1149120000000,4],[1151712000000,3.4],[1154390400000,3.6],[1157068800000,3.6],[1159660800000,3.6],[1162339200000,3.9],[1164931200000,3.7],[1167609600000,3.7],[1170288000000,4.1],[1172707200000,4.4],[1175385600000,4.2],[1177977600000,4],[1180656000000,3.8],[1183248000000,3.7],[1185926400000,3.4],[1188604800000,3.5],[1191196800000,3.4],[1193875200000,3.1],[1196467200000,3.6],[1199145600000,3.7],[1201824000000,4.1],[1204329600000,4],[1207008000000,3.4],[1209600000000,7.8],[1212278400000,5.5],[1214870400000,4.4],[1217548800000,3.8],[1220227200000,4.7],[1222819200000,5.5],[1225497600000,6.4],[1228089600000,6.4],[1230768000000,6.2],[1233446400000,5.5],[1235865600000,5.9],[1238544000000,6.8],[1241136000000,8.2],[1243814400000,6.7],[1246406400000,6],[1249084800000,4.9],[1251763200000,5.9],[1254355200000,5.4],[1257033600000,5.9],[1259625600000,5.9],[1262304000000,6.1],[1264982400000,5.8],[1267401600000,5.7],[1270080000000,6.4],[1272672000000,7],[1275350400000,6.9],[1277942400000,6.8],[1280620800000,6.9],[1283299200000,6.7],[1285891200000,6.6],[1288569600000,6.6],[1291161600000,7.1],[1293840000000,7.4],[1296518400000,7.6],[1298937600000,7],[1301616000000,6.9],[1304208000000,6.9],[1306886400000,7.2],[1309478400000,7.3],[1312156800000,7.2],[1314835200000,6.8],[1317427200000,6.8],[1320105600000,7],[1322697600000,7.8],[1325376000000,8],[1328054400000,8],[1330560000000,8.5],[1333238400000,8.7],[1335830400000,8.8],[1338508800000,9.1],[1341100800000,8.2],[1343779200000,8],[1346457600000,8.2],[1349049600000,8.8],[1351728000000,9.7],[1354320000000,12],[1356998400000,6.3],[1359676800000,5.8],[1362096000000,5.9],[1364774400000,6.4],[1367366400000,6.7],[1370044800000,6.8],[1372636800000,6.6],[1375315200000,6.7],[1377993600000,6.8],[1380585600000,6.3],[1383264000000,6.2],[1385856000000,6.4],[1388534400000,7.1],[1391212800000,7.3],[1393632000000,7.4],[1396310400000,7.4],[1398902400000,7.4],[1401580800000,7.4],[1404172800000,7.5],[1406851200000,7.2],[1409529600000,7.4],[1412121600000,7.2],[1414800000000,7.3],[1417392000000,7.6],[1420070400000,7.7],[1422748800000,7.9],[1425168000000,7.4],[1427846400000,7.6]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"tooltip\":{\"fixed\":{\"enabled\":true,\"position\":\"topLeft\"}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_xaxis.html","id":null,"dir":"Reference","previous_headings":"","what":"X-axis options — ax_xaxis","title":"X-axis options — ax_xaxis","text":"X-axis options","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_xaxis.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"X-axis options — ax_xaxis","text":"","code":"ax_xaxis( ax, type = NULL, categories = NULL, labels = NULL, axisBorder = NULL, axisTicks = NULL, tickAmount = NULL, min = NULL, max = NULL, range = NULL, floating = NULL, position = NULL, title = NULL, crosshairs = NULL, tooltip = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_xaxis.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"X-axis options — ax_xaxis","text":"ax apexchart() htmlwidget object. type Character. Available Options : \"categories\" \"datetime\". categories Categories labels displayed x-axis. labels list parameters. axisBorder list parameters. axisTicks list parameters. tickAmount Number Tick Intervals show. min Lowest number set x-axis. graph drawing beyond number clipped . max Highest number set x-axis. graph drawing beyond number clipped . range Range takes max value x-axis, subtracts provided range value gets min value based . , technically helps keep range min max values gets updated dynamically. floating Logical. Floating takes x-axis taken normal flow places x-axis svg element directly, similar absolutely positioned element. Set offsetX offsetY adjust position manually position Setting option allows change x-axis position. Available options: \"top\" \"bottom\". title list parameters. crosshairs list parameters. tooltip list parameters. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_xaxis.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"X-axis options — ax_xaxis","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_xaxis.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"X-axis options — ax_xaxis","text":"See https://apexcharts.com/docs/options/xaxis/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_xaxis.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"X-axis options — ax_xaxis","text":"","code":"data(\"mpg\", package = \"ggplot2\") # X axis title apex( data = mpg, mapping = aes(x = manufacturer) ) %>% ax_xaxis(title = list(text = \"Car's manufacturer\")) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":[],\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":18},{\"x\":\"chevrolet\",\"y\":19},{\"x\":\"dodge\",\"y\":37},{\"x\":\"ford\",\"y\":25},{\"x\":\"honda\",\"y\":9},{\"x\":\"hyundai\",\"y\":14},{\"x\":\"jeep\",\"y\":8},{\"x\":\"land rover\",\"y\":4},{\"x\":\"lincoln\",\"y\":3},{\"x\":\"mercury\",\"y\":4},{\"x\":\"nissan\",\"y\":13},{\"x\":\"pontiac\",\"y\":5},{\"x\":\"subaru\",\"y\":14},{\"x\":\"toyota\",\"y\":34},{\"x\":\"volkswagen\",\"y\":27}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}},\"title\":{\"text\":\"Car's manufacturer\"}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # force labels to rotate and increase height apex( data = mpg, mapping = aes(x = manufacturer) ) %>% ax_xaxis(labels = list(rotateAlways = TRUE, maxHeight = 180)) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":[],\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":18},{\"x\":\"chevrolet\",\"y\":19},{\"x\":\"dodge\",\"y\":37},{\"x\":\"ford\",\"y\":25},{\"x\":\"honda\",\"y\":9},{\"x\":\"hyundai\",\"y\":14},{\"x\":\"jeep\",\"y\":8},{\"x\":\"land rover\",\"y\":4},{\"x\":\"lincoln\",\"y\":3},{\"x\":\"mercury\",\"y\":4},{\"x\":\"nissan\",\"y\":13},{\"x\":\"pontiac\",\"y\":5},{\"x\":\"subaru\",\"y\":14},{\"x\":\"toyota\",\"y\":34},{\"x\":\"volkswagen\",\"y\":27}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"},\"rotateAlways\":true,\"maxHeight\":180}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} # force to not rotate apex( data = mpg, mapping = aes(x = manufacturer) ) %>% ax_xaxis(labels = list(rotate = 0, trim = FALSE)) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":[],\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":18},{\"x\":\"chevrolet\",\"y\":19},{\"x\":\"dodge\",\"y\":37},{\"x\":\"ford\",\"y\":25},{\"x\":\"honda\",\"y\":9},{\"x\":\"hyundai\",\"y\":14},{\"x\":\"jeep\",\"y\":8},{\"x\":\"land rover\",\"y\":4},{\"x\":\"lincoln\",\"y\":3},{\"x\":\"mercury\",\"y\":4},{\"x\":\"nissan\",\"y\":13},{\"x\":\"pontiac\",\"y\":5},{\"x\":\"subaru\",\"y\":14},{\"x\":\"toyota\",\"y\":34},{\"x\":\"volkswagen\",\"y\":27}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"},\"rotate\":0,\"trim\":false}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]} data(\"economics\", package = \"ggplot2\") # Custom crosshair apex( data = tail(economics, 50), mapping = aes(x = date, y = psavert), type = \"line\" ) %>% ax_xaxis( crosshairs = list( opacity = 1, width = 2, fill = list(color = \"red\"), stroke = list(width = 0) ) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"psavert\",\"type\":\"line\",\"data\":[[1298937600000,7],[1301616000000,6.9],[1304208000000,6.9],[1306886400000,7.2],[1309478400000,7.3],[1312156800000,7.2],[1314835200000,6.8],[1317427200000,6.8],[1320105600000,7],[1322697600000,7.8],[1325376000000,8],[1328054400000,8],[1330560000000,8.5],[1333238400000,8.7],[1335830400000,8.8],[1338508800000,9.1],[1341100800000,8.2],[1343779200000,8],[1346457600000,8.2],[1349049600000,8.8],[1351728000000,9.7],[1354320000000,12],[1356998400000,6.3],[1359676800000,5.8],[1362096000000,5.9],[1364774400000,6.4],[1367366400000,6.7],[1370044800000,6.8],[1372636800000,6.6],[1375315200000,6.7],[1377993600000,6.8],[1380585600000,6.3],[1383264000000,6.2],[1385856000000,6.4],[1388534400000,7.1],[1391212800000,7.3],[1393632000000,7.4],[1396310400000,7.4],[1398902400000,7.4],[1401580800000,7.4],[1404172800000,7.5],[1406851200000,7.2],[1409529600000,7.4],[1412121600000,7.2],[1414800000000,7.3],[1417392000000,7.6],[1420070400000,7.7],[1422748800000,7.9],[1425168000000,7.4],[1427846400000,7.6]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}},\"crosshairs\":{\"opacity\":1,\"width\":2,\"fill\":{\"color\":\"red\"},\"stroke\":{\"width\":0}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2011-03-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]} # Date format (zoom to see changes) apex( data = tail(economics, 150), mapping = aes(x = date, y = psavert), type = \"line\" ) %>% ax_xaxis( labels = list( datetimeFormatter = list( year = \"yyyy-MM\", month = \"yyyy-MM-dd\", day = \"yyyy-MM-dd HH:mm\" ) ) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"psavert\",\"type\":\"line\",\"data\":[[1036108800000,5.7],[1038700800000,5.5],[1041379200000,5.5],[1044057600000,5.6],[1046476800000,5.3],[1049155200000,5.3],[1051747200000,5.8],[1054425600000,5.6],[1057017600000,6.3],[1059696000000,6],[1062374400000,5.2],[1064966400000,5.3],[1067644800000,5.4],[1070236800000,5.4],[1072915200000,5],[1075593600000,5],[1078099200000,4.9],[1080777600000,5.3],[1083369600000,5.3],[1086048000000,5.8],[1088640000000,5.3],[1091318400000,5.2],[1093996800000,4.6],[1096588800000,4.5],[1099267200000,4.1],[1101859200000,6.9],[1104537600000,3.7],[1107216000000,3.4],[1109635200000,3.6],[1112313600000,3.1],[1114905600000,3.5],[1117584000000,2.9],[1120176000000,2.2],[1122854400000,2.7],[1125532800000,2.7],[1128124800000,3.1],[1130803200000,3.5],[1133395200000,3.7],[1136073600000,4.2],[1138752000000,4.2],[1141171200000,4.2],[1143849600000,4],[1146441600000,3.8],[1149120000000,4],[1151712000000,3.4],[1154390400000,3.6],[1157068800000,3.6],[1159660800000,3.6],[1162339200000,3.9],[1164931200000,3.7],[1167609600000,3.7],[1170288000000,4.1],[1172707200000,4.4],[1175385600000,4.2],[1177977600000,4],[1180656000000,3.8],[1183248000000,3.7],[1185926400000,3.4],[1188604800000,3.5],[1191196800000,3.4],[1193875200000,3.1],[1196467200000,3.6],[1199145600000,3.7],[1201824000000,4.1],[1204329600000,4],[1207008000000,3.4],[1209600000000,7.8],[1212278400000,5.5],[1214870400000,4.4],[1217548800000,3.8],[1220227200000,4.7],[1222819200000,5.5],[1225497600000,6.4],[1228089600000,6.4],[1230768000000,6.2],[1233446400000,5.5],[1235865600000,5.9],[1238544000000,6.8],[1241136000000,8.2],[1243814400000,6.7],[1246406400000,6],[1249084800000,4.9],[1251763200000,5.9],[1254355200000,5.4],[1257033600000,5.9],[1259625600000,5.9],[1262304000000,6.1],[1264982400000,5.8],[1267401600000,5.7],[1270080000000,6.4],[1272672000000,7],[1275350400000,6.9],[1277942400000,6.8],[1280620800000,6.9],[1283299200000,6.7],[1285891200000,6.6],[1288569600000,6.6],[1291161600000,7.1],[1293840000000,7.4],[1296518400000,7.6],[1298937600000,7],[1301616000000,6.9],[1304208000000,6.9],[1306886400000,7.2],[1309478400000,7.3],[1312156800000,7.2],[1314835200000,6.8],[1317427200000,6.8],[1320105600000,7],[1322697600000,7.8],[1325376000000,8],[1328054400000,8],[1330560000000,8.5],[1333238400000,8.7],[1335830400000,8.8],[1338508800000,9.1],[1341100800000,8.2],[1343779200000,8],[1346457600000,8.2],[1349049600000,8.8],[1351728000000,9.7],[1354320000000,12],[1356998400000,6.3],[1359676800000,5.8],[1362096000000,5.9],[1364774400000,6.4],[1367366400000,6.7],[1370044800000,6.8],[1372636800000,6.6],[1375315200000,6.7],[1377993600000,6.8],[1380585600000,6.3],[1383264000000,6.2],[1385856000000,6.4],[1388534400000,7.1],[1391212800000,7.3],[1393632000000,7.4],[1396310400000,7.4],[1398902400000,7.4],[1401580800000,7.4],[1404172800000,7.5],[1406851200000,7.2],[1409529600000,7.4],[1412121600000,7.2],[1414800000000,7.3],[1417392000000,7.6],[1420070400000,7.7],[1422748800000,7.9],[1425168000000,7.4],[1427846400000,7.6]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"},\"datetimeFormatter\":{\"year\":\"yyyy-MM\",\"month\":\"yyyy-MM-dd\",\"day\":\"yyyy-MM-dd HH:mm\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"2002-11-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_yaxis.html","id":null,"dir":"Reference","previous_headings":"","what":"Y-axis options — ax_yaxis","title":"Y-axis options — ax_yaxis","text":"Y-axis options","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_yaxis.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Y-axis options — ax_yaxis","text":"","code":"ax_yaxis( ax, opposite = NULL, tickAmount = NULL, max = NULL, min = NULL, floating = NULL, labels = NULL, axisBorder = NULL, axisTicks = NULL, title = NULL, tooltip = NULL, crosshairs = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_yaxis.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Y-axis options — ax_yaxis","text":"ax apexchart() htmlwidget object. opposite Logical. enabled, draw yaxis right side chart. tickAmount Number Tick Intervals show. max Lowest number set y-axis. graph drawing beyond number clipped . min Highest number set y-axis. graph drawing beyond number clipped . floating Logical. Floating takes y-axis taken normal flow places y-axis svg element directly, similar absolutely positioned element. Set offsetX offsetY adjust position manually labels list parameters. axisBorder list parameters. axisTicks list parameters. title list parameters. tooltip list parameters. crosshairs list parameters. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_yaxis.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Y-axis options — ax_yaxis","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_yaxis.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Y-axis options — ax_yaxis","text":"See https://apexcharts.com/docs/options/yaxis/","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_yaxis.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Y-axis options — ax_yaxis","text":"","code":"data(\"economics_long\", package = \"ggplot2\") apex( data = economics_long, mapping = aes(x = date, y = value01, group = variable), type = \"line\" ) %>% ax_yaxis( decimalsInFloat = 2, title = list(text = \"Rescaled to [0,1]\") ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"pce\",\"type\":\"line\",\"data\":[[-79056000000,0],[-76377600000,0.000265249719776508],[-73699200000,0.000761523389035778],[-71107200000,0.000470604341538967],[-68428800000,0.000915539355357616],[-65836800000,0.00157438543351217],[-63158400000,0.00207065910277143],[-60480000000,0.0023016830522542],[-57974400000,0.00321722240761181],[-55296000000,0.00319155307989151],[-52704000000,0.00368782674915077],[-50025600000,0.00424399551642409],[-47433600000,0.00483439005399116],[-44755200000,0.00515953487178171],[-42076800000,0.00526221218266294],[-39484800000,0.00555313123015975],[-36806400000,0.00598950980140497],[-34214400000,0.0059723969162581],[-31536000000,0.0065713478963986],[-28857600000,0.00701628291021725],[-26438400000,0.00703339579536412],[-23760000000,0.0074612179240359],[-21168000000,0.00800883024873578],[-18489600000,0.0080601689041764],[-15897600000,0.00821418487049825],[-13219200000,0.00883024873578561],[-10540800000,0.00911261134070899],[-7948800000,0.00956610279710108],[-5270400000,0.00973723164856979],[-2678400000,0.00993402982775881],[0,0.0104388599395915],[2678400000,0.0108923513959836],[5097600000,0.0107468918722352],[7776000000,0.0110634802474523],[10368000000,0.0116110925721522],[13046400000,0.0119447938325162],[15638400000,0.0121330355691318],[18316800000,0.0125095190423629],[20995200000,0.013040018481916],[23587200000,0.0129715669413285],[26265600000,0.0128261074175801],[28857600000,0.0135961872491893],[31536000000,0.0144946137194],[34214400000,0.0147769763243234],[36633600000,0.0149994438312327],[39312000000,0.0155812819262264],[41904000000,0.0157780801054154],[44582400000,0.0165224906093043],[47174400000,0.0164454826261434],[49852800000,0.0169588691805495],[52531200000,0.0176519410289978],[55123200000,0.017891521421054],[57801600000,0.0183278999922992],[60393600000,0.0189696331853069],[63072000000,0.0192348829050834],[65750400000,0.0196370357060349],[68256000000,0.0207493732405815],[70934400000,0.0210317358455049],[73526400000,0.0215023401870438],[76204800000,0.0218103721196875],[78796800000,0.0225205568532827],[81475200000,0.0230681691779826],[84153600000,0.0234788784215075],[86745600000,0.0246596674966416],[89424000000,0.025138828280754],[92016000000,0.0256179890648664],[94694400000,0.0265078590925037],[97372800000,0.0273036082518332],[99792000000,0.0279025592319737],[102470400000,0.0281506960666034],[105062400000,0.0286555261784361],[107740800000,0.0288865501279188],[110332800000,0.0297250815001155],[113011200000,0.029656629959528],[115689600000,0.0310171043287043],[118281600000,0.0309315399029699],[120960000000,0.0316759504068588],[123552000000,0.0316502810791385],[126230400000,0.03232624004244],[128908800000,0.0327711750562586],[131328000000,0.0337722788373506],[134006400000,0.0345765844392535],[136598400000,0.0355691317777721],[139276800000,0.0360482925618845],[141868800000,0.0368953803766546],[144547200000,0.0383414191715652],[147225600000,0.0383670884992855],[149817600000,0.0387179026447964],[152496000000,0.0384612093675933],[155088000000,0.0389403701517057],[157766400000,0.0401211592268399],[160444800000,0.041301948301974],[162864000000,0.0414046256128552],[165542400000,0.0417811090860864],[168134400000,0.0438260988611375],[170812800000,0.0445020578244389],[173404800000,0.0456143953589855],[176083200000,0.0462304592242729],[178761600000,0.0468978617450009],[181353600000,0.0474198047419805],[184032000000,0.0486947146854224],[186624000000,0.0500894148248924],[189302400000,0.0513728812109077],[191980800000,0.0514242198663484],[194486400000,0.0520402837316357],[197164800000,0.0529387102018465],[199756800000,0.0527076862523637],[202435200000,0.0542307330304353],[205027200000,0.0550093693046179],[207705600000,0.0557281104807865],[210384000000,0.0566522062787176],[212976000000,0.0573367216845924],[215654400000,0.0583806076785516],[218246400000,0.0603058072575746],[220924800000,0.0606052827476448],[223603200000,0.0619999828871149],[226022400000,0.0625989338672553],[228700800000,0.0633690136988646],[231292800000,0.0642075450710612],[233971200000,0.0647637138383346],[236563200000,0.0662097526332452],[239241600000,0.0666546876470639],[241920000000,0.0674076545935262],[244512000000,0.0688536933884368],[247190400000,0.0701884984298928],[249782400000,0.070958578261502],[252460800000,0.0704024094942287],[255139200000,0.0725928587930282],[257558400000,0.0745095019294778],[260236800000,0.0761266695758572],[262828800000,0.0774614746173131],[265507200000,0.0786422636924472],[268099200000,0.0787278281181816],[270777600000,0.0804562295180156],[273456000000,0.0809610596298483],[276048000000,0.0821589615901293],[278726400000,0.08333119422269],[281318400000,0.0846916685918662],[283996800000,0.085196498703699],[286675200000,0.086514190860008],[289094400000,0.0876607541648484],[291772800000,0.0882768180301358],[294364800000,0.0900223323151167],[297043200000,0.0914683711100273],[299635200000,0.0923582411376646],[302313600000,0.0948823916968281],[304992000000,0.0964482206877669],[307584000000,0.0971070667659214],[310262400000,0.0984504282499508],[312854400000,0.09922050808156],[315532800000,0.101873005279325],[318211200000,0.102223819424836],[320716800000,0.10280565751983],[323395200000,0.101693319985283],[325987200000,0.102112585671381],[328665600000,0.103712640432614],[331257600000,0.106134113680896],[333936000000,0.10756303959066],[336614400000,0.108991965500424],[339206400000,0.112123623482301],[341884800000,0.112953598411924],[344476800000,0.11508415261271],[347155200000,0.116649981603648],[349833600000,0.117864996449076],[352252800000,0.119465051210309],[354931200000,0.11959339784891],[357523200000,0.120397703450813],[360201600000,0.122168887063514],[362793600000,0.122819176699096],[365472000000,0.124915505129587],[368150400000,0.12482138426128],[370742400000,0.124684481180105],[373420800000,0.125257762832525],[376012800000,0.12681503538089],[378691200000,0.127525220114485],[381369600000,0.129587322774683],[383788800000,0.129835459609313],[386467200000,0.130023701345928],[389059200000,0.131580973894294],[391737600000,0.131889005826937],[394329600000,0.133951108487135],[397008000000,0.134627067450437],[399686400000,0.136723395880929],[402278400000,0.138537361706497],[404956800000,0.140548125711254],[407548800000,0.141600568147787],[410227200000,0.142661567026893],[412905600000,0.142918260304096],[415324800000,0.145125822488042],[418003200000,0.147145142935373],[420595200000,0.148813649237193],[423273600000,0.151389138451797],[425865600000,0.153819168142653],[428544000000,0.155188198954403],[431222400000,0.156428883127551],[433814400000,0.158371195591721],[436492800000,0.15911560609561],[439084800000,0.161451514918158],[441763200000,0.163659077102104],[444441600000,0.162298602732928],[446947200000,0.164702963096063],[449625600000,0.166919081722583],[452217600000,0.168373676960067],[454896000000,0.170179086343062],[457488000000,0.170093521917328],[460166400000,0.171599455810252],[462844800000,0.173447647406114],[465436800000,0.173233736341779],[468115200000,0.176664869813726],[470707200000,0.177623191381951],[473385600000,0.180720623593535],[476064000000,0.182603040959691],[478483200000,0.183261887037845],[481161600000,0.184203095720923],[483753600000,0.187360423030521],[486432000000,0.18676147205038],[489024000000,0.189011816447194],[491702400000,0.192126361543925],[494380800000,0.195771406080208],[496972800000,0.192442949919142],[499651200000,0.193752085632877],[502243200000,0.197191775547398],[504921600000,0.198543693474001],[507600000000,0.197953298936434],[510019200000,0.198244217983931],[512697600000,0.19923676532245],[515289600000,0.201144852016326],[517968000000,0.20150422260441],[520560000000,0.20317272890623],[523238400000,0.204661549914008],[525916800000,0.210924865877763],[528508800000,0.207596409716696],[531187200000,0.207211369800892],[533779200000,0.213089645848842],[536457600000,0.207818877223606],[539136000000,0.21348324220722],[541555200000,0.214475789545739],[544233600000,0.216657682401965],[546825600000,0.217479100889014],[549504000000,0.219566872876933],[552096000000,0.221440733800515],[554774400000,0.224529609569525],[557452800000,0.224161682538868],[560044800000,0.224846197944743],[562723200000,0.225676172874366],[565315200000,0.228234549203823],[567993600000,0.231622900462904],[570672000000,0.232281746541058],[573177600000,0.235627315587271],[575856000000,0.235841226651607],[578448000000,0.238459498079079],[581126400000,0.240590052279864],[583718400000,0.242660711382636],[586396800000,0.244825491353715],[589075200000,0.245424442333855],[591667200000,0.248735785609775],[594345600000,0.250147598634392],[596937600000,0.252671749193555],[599616000000,0.25472529541118],[602294400000,0.255093222441838],[604713600000,0.256017318239769],[607392000000,0.259799265857227],[609984000000,0.26055223280369],[612662400000,0.261818586304558],[615254400000,0.263452866836084],[617932800000,0.266439065294213],[620611200000,0.266550299047668],[623203200000,0.26755140282876],[625881600000,0.268381377758383],[628473600000,0.271880962770918],[631152000000,0.275859708567566],[633830400000,0.27564579750323],[636249600000,0.277930367670337],[638928000000,0.279222390498926],[641520000000,0.279718664168186],[644198400000,0.282174363186762],[646790400000,0.283646071309392],[649468800000,0.285922085033926],[652147200000,0.287787389514935],[654739200000,0.287830171727803],[657417600000,0.287941405481257],[660009600000,0.287034422568473],[662688000000,0.285297464726066],[665366400000,0.287496470467438],[667785600000,0.291458103378939],[670464000000,0.290953273267107],[673056000000,0.293186504778773],[675734400000,0.293811125086634],[678326400000,0.29599301794286],[681004800000,0.296258267662637],[683683200000,0.297593072704093],[686275200000,0.296848662200204],[688953600000,0.299210240350472],[691545600000,0.300656279145383],[694224000000,0.306149515277528],[696902400000,0.307415868778397],[699408000000,0.308913246228748],[702086400000,0.310153930401896],[704678400000,0.31245561345415],[707356800000,0.314055668215383],[709948800000,0.316425802808225],[712627200000,0.317803390062548],[715305600000,0.32074680630781],[717897600000,0.3232624004244],[720576000000,0.324614318351002],[723168000000,0.327686081234866],[725846400000,0.328054008265524],[728524800000,0.329303248881245],[730944000000,0.329063668489189],[733622400000,0.332563253501724],[736214400000,0.33504462184802],[738892800000,0.336550555740945],[741484800000,0.339023367644668],[744163200000,0.340067253638627],[746841600000,0.342668412180952],[749433600000,0.344490934449094],[752112000000,0.346313456717235],[754704000000,0.347768051954719],[757382400000,0.348965953915],[760060800000,0.353030264137382],[762480000000,0.354176827442223],[765158400000,0.356324494528155],[767750400000,0.35618759144698],[770428800000,0.359558829820914],[773020800000,0.360559933602006],[775699200000,0.364153639482849],[778377600000,0.365214638361955],[780969600000,0.368457530097287],[783648000000,0.369544198304113],[786240000000,0.370913229115863],[788918400000,0.371734647602913],[791596800000,0.371700421832619],[794016000000,0.374660950963028],[796694400000,0.375071660206553],[799286400000,0.378742374070556],[801964800000,0.382541434573162],[804556800000,0.381916814265301],[807235200000,0.384920125608577],[809913600000,0.386220704879739],[812505600000,0.385655979669892],[815184000000,0.389224016223015],[817776000000,0.392809165661285],[820454400000,0.391799505437619],[823132800000,0.395829589889708],[825638400000,0.399294949131949],[828316800000,0.402264034704931],[830908800000,0.403615952631534],[833587200000,0.40412933918594],[836179200000,0.406020312994669],[838857600000,0.407996851229133],[841536000000,0.409845042824995],[844128000000,0.412574548005921],[846806400000,0.414516860470091],[849398400000,0.416861325735212],[852076800000,0.419642169571579],[854755200000,0.421601594920896],[857174400000,0.42332999632073],[859852800000,0.423766374891975],[862444800000,0.423843382875136],[865123200000,0.426752573350104],[867715200000,0.4314243909952],[870393600000,0.434692952058252],[873072000000,0.435950749116547],[875664000000,0.439031068442984],[878342400000,0.441033276005168],[880934400000,0.443685773202933],[883612800000,0.443497531466318],[886291200000,0.446398165498712],[888710400000,0.448665622780673],[891388800000,0.451899958073431],[893980800000,0.456161066475002],[896659200000,0.459053144064824],[899251200000,0.460618973055762],[901929600000,0.463613727956465],[904608000000,0.46708764364128],[907200000000,0.46992838257566],[909878400000,0.471348752042851],[912470400000,0.476063351900814],[915148800000,0.476268706522576],[917827200000,0.478741518426299],[920246400000,0.481402572066638],[922924800000,0.486818800215622],[925516800000,0.489342950774786],[928195200000,0.491764424023068],[930787200000,0.494117445730763],[933465600000,0.497967844888809],[936144000000,0.502442864354716],[938736000000,0.504436515474327],[941414400000,0.507499721915616],[944006400000,0.51612461602964],[946684800000,0.515833696982143],[949363200000,0.523055334514122],[951868800000,0.528711143055164],[954547200000,0.527453345996868],[957139200000,0.530576447536173],[959817600000,0.53368243619033],[962409600000,0.535410837590164],[965088000000,0.538405592490866],[967766400000,0.545575891367405],[970358400000,0.546029382823797],[973036800000,0.547244397669225],[975628800000,0.550949337303523],[978307200000,0.553627503829008],[980985600000,0.555236115032814],[983404800000,0.554560156069513],[986083200000,0.55569816293178],[988675200000,0.559625570072987],[991353600000,0.560789246262974],[993945600000,0.561773237158919],[996624000000,0.56491345158337],[999302400000,0.556690710270298],[1001894400000,0.573427111943938],[1004572800000,0.569961752701697],[1007164800000,0.568233351301863],[1009843200000,0.570509365026397],[1012521600000,0.574274199758708],[1014940800000,0.575891367405088],[1017619200000,0.581726861240171],[1020211200000,0.579784548776001],[1022889600000,0.582822085889571],[1025481600000,0.588144193170248],[1028160000000,0.589949602553243],[1030838400000,0.589051176083032],[1033430400000,0.592448083784686],[1036108800000,0.594929452130982],[1038700800000,0.599472923137476],[1041379200000,0.601209880979884],[1044057600000,0.60144946137194],[1046476800000,0.606797237980337],[1049155200000,0.608730994001934],[1051747200000,0.609338501424648],[1054425600000,0.613659504924233],[1057017600000,0.618759144698],[1059696000000,0.626998998896219],[1062374400000,0.627041781109086],[1064966400000,0.627957320464444],[1067644800000,0.632569243011526],[1070236800000,0.635101950013263],[1072915200000,0.640081799591002],[1075593600000,0.642854086984795],[1078099200000,0.647662807711066],[1080777600000,0.648740919475319],[1083369600000,0.655124025635102],[1086048000000,0.653754994823352],[1088640000000,0.659889964148506],[1091318400000,0.662816267508621],[1093996800000,0.668634648458557],[1096588800000,0.673212345235345],[1099267200000,0.677148308819125],[1101859200000,0.682359182346348],[1104537600000,0.68139230433555],[1107216000000,0.686440605453877],[1109635200000,0.689888851810971],[1112313600000,0.696400304609356],[1114905600000,0.696254845085607],[1117584000000,0.703177007127517],[1120176000000,0.712135602501904],[1122854400000,0.712383739336533],[1125532800000,0.716952879670748],[1128124800000,0.72044390824071],[1130803200000,0.721462124906949],[1133395200000,0.724123178547287],[1136073600000,0.731841089748526],[1138752000000,0.734433691848277],[1141171200000,0.737171753471777],[1143849600000,0.741680998707977],[1146441600000,0.745129245065072],[1149120000000,0.747328250806445],[1151712000000,0.754327420831515],[1154390400000,0.754258969290928],[1157068800000,0.757074038897588],[1159660800000,0.758656980773674],[1162339200000,0.759255931753814],[1164931200000,0.766854052759025],[1167609600000,0.77090125009626],[1170288000000,0.773510965081158],[1172707200000,0.776788082586784],[1175385600000,0.779406354014255],[1177977600000,0.782452447570398],[1180656000000,0.783821478382148],[1183248000000,0.787440853590711],[1185926400000,0.791231357650743],[1188604800000,0.794996192383055],[1191196800000,0.797486117171925],[1193875200000,0.803544078513917],[1196467200000,0.804451061426701],[1199145600000,0.806299253022563],[1201824000000,0.804878883555373],[1204329600000,0.808814847139153],[1207008000000,0.812014956661618],[1209600000000,0.816892128928477],[1212278400000,0.821521164360705],[1214870400000,0.821247358198356],[1217548800000,0.820391713941012],[1220227200000,0.816010815343413],[1222819200000,0.808891855122314],[1225497600000,0.796955617732372],[1228089600000,0.789246262973706],[1230768000000,0.7937897339802],[1233446400000,0.792266687202129],[1235865600000,0.788202376979747],[1238544000000,0.788741432861873],[1241136000000,0.790803535522071],[1243814400000,0.795766272214664],[1246406400000,0.79874391423022],[1249084800000,0.808951750220328],[1251763200000,0.802311950783342],[1254355200000,0.806461825431459],[1257033600000,0.807197679492774],[1259625600000,0.81219464195566],[1262304000000,0.81244277879029],[1264982400000,0.81490703425144],[1267401600000,0.8199125531569],[1270080000000,0.821948986489377],[1272672000000,0.823497702595169],[1275350400000,0.82524321688015],[1277942400000,0.828092512257104],[1280620800000,0.831814564776549],[1283299200000,0.833594304831823],[1285891200000,0.838360243345227],[1288569600000,0.842638464631945],[1291161600000,0.84583857415441],[1293840000000,0.849552070231281],[1296518400000,0.852512599361689],[1298937600000,0.859391979190732],[1301616000000,0.862566419385476],[1304208000000,0.864654191373395],[1306886400000,0.866776189131607],[1309478400000,0.870258661258995],[1312156800000,0.872235199493459],[1314835200000,0.875443865458497],[1317427200000,0.876727331844512],[1320105600000,0.877274944169212],[1322697600000,0.878361612376039],[1325376000000,0.886053854249557],[1328054400000,0.893874442761677],[1330560000000,0.893728983237929],[1333238400000,0.896116230715918],[1335830400000,0.895166465590266],[1338508800000,0.89325837889639],[1341100800000,0.895902319651582],[1343779200000,0.898204002703836],[1346457600000,0.903115400740988],[1349049600000,0.906392518246614],[1351728000000,0.909558401998785],[1354320000000,0.909874990374002],[1356998400000,0.915205654097253],[1359676800000,0.918354424964277],[1362096000000,0.917284869642597],[1364774400000,0.915428121604162],[1367366400000,0.918782247092949],[1370044800000,0.92085290619572],[1372636800000,0.923240153673709],[1375315200000,0.926020997510075],[1377993600000,0.92924677636026],[1380585600000,0.933773134481608],[1383264000000,0.939574402546397],[1385856000000,0.942167004646148],[1388534400000,0.941704956747183],[1391212800000,0.946299766409118],[1393632000000,0.952871114305516],[1396310400000,0.957970754079284],[1398902400000,0.961889604777918],[1401580800000,0.967759324383294],[1404172800000,0.971481376902739],[1406851200000,0.978651675779278],[1409529600000,0.979772569756398],[1412121600000,0.985385596084572],[1414800000000,0.987815625775428],[1417392000000,0.988722608688212],[1420070400000,0.987353577876462],[1422748800000,0.990468122973193],[1425168000000,0.99696246288643],[1427846400000,1]]},{\"name\":\"pop\",\"type\":\"line\",\"data\":[[-79056000000,0],[-76377600000,0.00163529885435811],[-73699200000,0.00329525045526433],[-71107200000,0.00492233172743973],[-68428800000,0.00645901959560539],[-65836800000,0.00776561516265533],[-63158400000,0.00900647007224364],[-60480000000,0.0099268392767065],[-57974400000,0.0110444304535542],[-55296000000,0.0122935029453253],[-52704000000,0.013550793019279],[-50025600000,0.0149888699012522],[-47433600000,0.0163858588723119],[-44755200000,0.0179636346513911],[-42076800000,0.0195824983413838],[-39484800000,0.021184926867011],[-36806400000,0.022631221331167],[-34214400000,0.0239049465694861],[-31536000000,0.025047190492882],[-28857600000,0.0260415179369891],[-26438400000,0.0272084146069331],[-23760000000,0.0283424409481463],[-21168000000,0.029739429919206],[-18489600000,0.0311857243833619],[-15897600000,0.0325827133544216],[-13219200000,0.0342262297909624],[-10540800000,0.0359765747958783],[-7948800000,0.0377187022186116],[-5270400000,0.039345783490787],[-2678400000,0.0407838603727602],[0,0.0422137196725507],[2678400000,0.0435203152396007],[5097600000,0.0447365174026409],[7776000000,0.0467498250374034],[10368000000,0.0484426469670404],[13046400000,0.0502751677937834],[15638400000,0.0520994710383437],[18316800000,0.0540963435087408],[20995200000,0.0561096511435033],[23587200000,0.0581476115248139],[26265600000,0.060086960919932],[28857600000,0.0618455235070307],[31536000000,0.0637191322446872],[34214400000,0.0653790838455934],[36633600000,0.0669157717137591],[39312000000,0.068641463972127],[41904000000,0.0702438924977542],[44582400000,0.0719038440986605],[47174400000,0.0735391429530186],[49852800000,0.0753470110332135],[52531200000,0.0772617076817835],[55123200000,0.0791599691659882],[57801600000,0.080885661424356],[60393600000,0.0824059141281562],[63072000000,0.0838604261744949],[65750400000,0.0850437580088042],[68256000000,0.0862846129183926],[70934400000,0.0877144722181831],[73526400000,0.089021067785233],[76204800000,0.0905002325781197],[78796800000,0.0919054391313621],[81475200000,0.0933763863420662],[84153600000,0.0950445555251551],[86745600000,0.0966962895438786],[89424000000,0.0981508015902172],[92016000000,0.0995067026503634],[94694400000,0.100854386128327],[97372800000,0.101963759722992],[99792000000,0.103064915735474],[102470400000,0.104429034377803],[105062400000,0.105719194780488],[107740800000,0.107107966169365],[110332800000,0.108447432065145],[113011200000,0.10995124960458],[115689600000,0.111570113294573],[118281600000,0.113098583580556],[120960000000,0.114405179147606],[123552000000,0.115646034057194],[126230400000,0.116854018638052],[128908800000,0.118020915307996],[131328000000,0.119146724067026],[134006400000,0.120379361394432],[136598400000,0.121628433886203],[139276800000,0.12305007560381],[141868800000,0.124430629410505],[144547200000,0.125975534860853],[147225600000,0.127651921626125],[149817600000,0.129336525973579],[152496000000,0.13076638527337],[155088000000,0.132056545676054],[157766400000,0.133280965421277],[160444800000,0.134382121433759],[162864000000,0.135475059864059],[165542400000,0.136748785102378],[168134400000,0.138145774073438],[170812800000,0.1401590817082],[173404800000,0.141843686055655],[176083200000,0.143667989300215],[178761600000,0.14529507057239],[181353600000,0.146889281515835],[184032000000,0.148401316637452],[186624000000,0.149716129786685],[189302400000,0.151063813264649],[191980800000,0.152329320920785],[194486400000,0.153414041768902],[197164800000,0.154622026349759],[199756800000,0.155912186752444],[202435200000,0.1573584812166],[205027200000,0.15878834051639],[207705600000,0.160415421788566],[210384000000,0.162116461300386],[212976000000,0.163792848065657],[215654400000,0.165354188680371],[218246400000,0.166767612815796],[220924800000,0.168189254533404],[223603200000,0.16954515559355],[226022400000,0.170859968742783],[228700800000,0.172339133535669],[231292800000,0.173777210417643],[233971200000,0.175313898285808],[236563200000,0.17689989164707],[239241600000,0.178699542145082],[241920000000,0.180589586047104],[244512000000,0.182364583798568],[247190400000,0.184049188146023],[249782400000,0.185643399089467],[252460800000,0.187073258389258],[255139200000,0.188322330881029],[257558400000,0.18966179677681],[260236800000,0.191297095631168],[262828800000,0.192817348334968],[265507200000,0.194485517518057],[268099200000,0.196178339447694],[270777600000,0.197986207527889],[273456000000,0.200024167909199],[276048000000,0.201815600825029],[278726400000,0.203508422754666],[281318400000,0.205094416115928],[283996800000,0.206696844641555],[286675200000,0.208241750091903],[289094400000,0.209737350049156],[291772800000,0.211405519232244],[294364800000,0.212999730175689],[297043200000,0.21473364001624],[299635200000,0.216475767438973],[302313600000,0.218447987162822],[304992000000,0.220518817872863],[307584000000,0.22260608374727],[310262400000,0.224463257320561],[312854400000,0.226238255072025],[315532800000,0.227947512166028],[318211200000,0.229632116513482],[320716800000,0.231218109874744],[323395200000,0.232960237297477],[325987200000,0.234521577912191],[328665600000,0.236748542683704],[331257600000,0.238424929448975],[333936000000,0.240290320604449],[336614400000,0.242205017253019],[339206400000,0.244103278737224],[341884800000,0.245705707262851],[344476800000,0.247078043487363],[347155200000,0.24837642147223],[349833600000,0.249477577484712],[352252800000,0.250734867558666],[354931200000,0.25220581476937],[357523200000,0.253619238904795],[360201600000,0.255147709190778],[362793600000,0.256832313538232],[365472000000,0.25864839920061],[368150400000,0.260497355191718],[370742400000,0.262379181511558],[373420800000,0.263866563886627],[376012800000,0.265238900111139],[378691200000,0.266619453917833],[381369600000,0.267901396738335],[383788800000,0.269191557141019],[386467200000,0.270629634022993],[389059200000,0.271977317500956],[391737600000,0.273481135040391],[394329600000,0.275091781148201],[397008000000,0.276768167913473],[399686400000,0.278469207425292],[402278400000,0.280252422758939],[404956800000,0.281706934805278],[407548800000,0.283079271029789],[410227200000,0.284410519343387],[412905600000,0.285651374252976],[415324800000,0.286801835758554],[418003200000,0.288182389565248],[420595200000,0.28934106865301],[423273600000,0.29095171476082],[425865600000,0.292504837793351],[428544000000,0.294099048736795],[431222400000,0.295742565173336],[433814400000,0.297435387102973],[436492800000,0.298840593656216],[439084800000,0.3001307540589],[441763200000,0.301363391386306],[444441600000,0.30253028805625],[446947200000,0.30374649021929],[449625600000,0.305094173697253],[452217600000,0.30635968135339],[454896000000,0.307732017577901],[457488000000,0.30927692302825],[460166400000,0.310928657046973],[462844800000,0.312662566887524],[465436800000,0.314437564638988],[468115200000,0.315941382178423],[470707200000,0.317231542581107],[473385600000,0.318480615072878],[476064000000,0.319581771085361],[478483200000,0.320650056769112],[481161600000,0.322030610575806],[483753600000,0.323460469875597],[486432000000,0.325071115983407],[489024000000,0.326681762091217],[491702400000,0.328432107096133],[494380800000,0.330231757594145],[496972800000,0.331998537763426],[499651200000,0.333592748706871],[502243200000,0.334989737677931],[504921600000,0.336312768409346],[507600000000,0.337545405736752],[510019200000,0.33869586724233],[512697600000,0.340059985884659],[515289600000,0.341514497930998],[517968000000,0.343059403381346],[520560000000,0.344637179160425],[523238400000,0.346305348343514],[525916800000,0.348063910930613],[528508800000,0.34975673286025],[531187200000,0.351342726221512],[533779200000,0.352600016295466],[536457600000,0.353947699773429],[539136000000,0.355147466772104],[541555200000,0.356371886517327],[544233600000,0.357793528234934],[546825600000,0.359198734788177],[549504000000,0.360718987491977],[552096000000,0.362329633599787],[554774400000,0.36403889069379],[557452800000,0.36577280053434],[560044800000,0.367605321361083],[562723200000,0.369191314722345],[565315200000,0.370588303693405],[567993600000,0.37200172782883],[570672000000,0.373234365156235],[573177600000,0.374450567319276],[575856000000,0.375814685961604],[578448000000,0.377170587021751],[581126400000,0.378781233129561],[583718400000,0.380548013298842],[586396800000,0.382347663796854],[589075200000,0.38418840220578],[591667200000,0.386070228525619],[594345600000,0.387639786722516],[596937600000,0.389053210857941],[599616000000,0.390433764664635],[602294400000,0.391699272320771],[604713600000,0.392948344812542],[607392000000,0.394517903009439],[609984000000,0.396038155713239],[612662400000,0.397747412807242],[615254400000,0.399621021544898],[617932800000,0.401519283029103],[620611200000,0.4035161554995],[623203200000,0.405578768627359],[625881600000,0.407337331214457],[628473600000,0.408964412486633],[631152000000,0.410443577279519],[633830400000,0.411824131086214],[636249600000,0.413344383790014],[638928000000,0.415760352951729],[641520000000,0.417888706737049],[644198400000,0.420222500076937],[646790400000,0.422548075834642],[649468800000,0.425070873564733],[652147200000,0.427634759205736],[654739200000,0.430149339353644],[657417600000,0.432524220604445],[660009600000,0.434825143615602],[662688000000,0.436986367729653],[665366400000,0.439007892946599],[667785600000,0.4409554599239],[670464000000,0.443182424695412],[673056000000,0.445401171884742],[675734400000,0.447817141046457],[678326400000,0.450167369550711],[681004800000,0.45274769035608],[683683200000,0.455369099072362],[686275200000,0.457908331966818],[688953600000,0.460233907724523],[691545600000,0.462255432941468],[694224000000,0.464309828487144],[696902400000,0.466232742717897],[699408000000,0.468328226174487],[702086400000,0.470703107425288],[704678400000,0.47311085900482],[707356800000,0.475609003988362],[709948800000,0.478115366554087],[712627200000,0.480892909331841],[715305600000,0.483489665301576],[717897600000,0.486061768524762],[720576000000,0.488411997029015],[723168000000,0.490597873889615],[725846400000,0.492783750750214],[728524800000,0.494755970474063],[730944000000,0.496670667122633],[733622400000,0.498823673654501],[736214400000,0.501009550515101],[738892800000,0.503335126272806],[741484800000,0.505734660270156],[744163200000,0.508290328328976],[746841600000,0.51076382056597],[749433600000,0.513196224892051],[752112000000,0.515349231423919],[754704000000,0.517395409387413],[757382400000,0.519408717022175],[760060800000,0.521085103787447],[762480000000,0.522966930107286],[765158400000,0.52525963553626],[767750400000,0.527281160753206],[770428800000,0.529540995853449],[773020800000,0.531874789193337],[775699200000,0.534241452861956],[778377600000,0.536649204441488],[780969600000,0.538982997781376],[783648000000,0.541103133984514],[786240000000,0.543116441619276],[788918400000,0.545088661343125],[791596800000,0.546945834916416],[794016000000,0.548794790907525],[796694400000,0.550931362275028],[799286400000,0.552928234745425],[801964800000,0.55516341709912],[804556800000,0.557521863185557],[807235200000,0.55987209168981],[809913600000,0.562411324584265],[812505600000,0.564909469567807],[815184000000,0.567037823353128],[817776000000,0.568911432090784],[820454400000,0.570620689184787],[823132800000,0.572371034189703],[825638400000,0.574269295673907],[828316800000,0.576389431877045],[830908800000,0.578484915333635],[833587200000,0.580769403180426],[836179200000,0.583078543773766],[838857600000,0.585617776668222],[841536000000,0.588148791980495],[844128000000,0.590589413888758],[846806400000,0.593030035797021],[849398400000,0.595059778596149],[852076800000,0.596990910409084],[854755200000,0.598839866400192],[857174400000,0.600779215795311],[859852800000,0.602932222327179],[862444800000,0.605060576112499],[865123200000,0.607361499123657],[867715200000,0.609744597956641],[870393600000,0.61241531216602],[873072000000,0.615012068135754],[875664000000,0.617469125208383],[878342400000,0.619720742726444],[880934400000,0.621742267943389],[883612800000,0.623829533817795],[886291200000,0.625571661240529],[888710400000,0.627289135916714],[891388800000,0.629401054537669],[893980800000,0.631537625905172],[896659200000,0.633772808258867],[899251200000,0.636065513687842],[901929600000,0.638555441089201],[904608000000,0.640987845415282],[907200000000,0.643362726666083],[909878400000,0.645614344184144],[912470400000,0.647660522147637],[915148800000,0.649829963843871],[917827200000,0.651489915444777],[920246400000,0.653182737374414],[922924800000,0.655261785666639],[925516800000,0.657447662527238],[928195200000,0.659781455867126],[930787200000,0.662197425028841],[933465600000,0.664720222758931],[936144000000,0.667193714995925],[938736000000,0.669658989650736],[941414400000,0.671861301675701],[944006400000,0.673874609310463],[946684800000,0.676011180677966],[949363200000,0.677769743265065],[951868800000,0.679569393763077],[954547200000,0.681574483815657],[957139200000,0.683415222224583],[959817600000,0.685461400188076],[962409600000,0.687589753973396],[965088000000,0.689792065998361],[967766400000,0.692084771427335],[970358400000,0.694295301034483],[973036800000,0.696366131744524],[975628800000,0.698363004214921],[978307200000,0.700203742623847],[980985600000,0.701986957957494],[983404800000,0.70373730296241],[986083200000,0.705635564446614],[988675200000,0.707517390766454],[991353600000,0.709588221476495],[993945600000,0.711617964275623],[996624000000,0.713762753225309],[999302400000,0.716006153161187],[1001894400000,0.718101636617776],[1004572800000,0.720098509088174],[1007164800000,0.721980335408013],[1009843200000,0.723771768323842],[1012521600000,0.725464590253479],[1014940800000,0.727075236361289],[1017619200000,0.728776275873109],[1020211200000,0.7306334494464],[1022889600000,0.732613886752432],[1025481600000,0.734594324058463],[1028160000000,0.736689807515053],[1030838400000,0.738809943718191],[1033430400000,0.740880774428232],[1036108800000,0.74282012382335],[1038700800000,0.74452116333517],[1041379200000,0.746205767682624],[1044057600000,0.747816413790434],[1046476800000,0.749435277480427],[1049155200000,0.751193840067526],[1051747200000,0.753009925729903],[1054425600000,0.754965710289387],[1057017600000,0.756905059684505],[1059696000000,0.758975890394546],[1062374400000,0.76102206835804],[1064966400000,0.763101116650264],[1067644800000,0.765015813298834],[1070236800000,0.766667547317557],[1072915200000,0.768179582439175],[1075593600000,0.769625876903331],[1078099200000,0.771211870264593],[1080777600000,0.773003303180422],[1083369600000,0.774794736096252],[1086048000000,0.776651909669543],[1088640000000,0.778624129393392],[1091318400000,0.780727830432164],[1093996800000,0.782798661142205],[1096588800000,0.784927014927526],[1099267200000,0.786866364322644],[1101859200000,0.7887399730603],[1104537600000,0.790547841140495],[1107216000000,0.792117399337392],[1109635200000,0.793612999294644],[1112313600000,0.795281168477733],[1114905600000,0.797039731064832],[1117584000000,0.798946210131219],[1120176000000,0.801000605676895],[1122854400000,0.803087871551302],[1125532800000,0.805281965994084],[1128124800000,0.8074596252725],[1130803200000,0.809390757085436],[1133395200000,0.811231495494361],[1136073600000,0.813006493245826],[1138752000000,0.814707532757645],[1141171200000,0.816400354687282],[1143849600000,0.81821644034966],[1146441600000,0.819983220518941],[1149120000000,0.821980092989338],[1151712000000,0.824092011610293],[1154390400000,0.826286106053075],[1157068800000,0.828677422468242],[1159660800000,0.830986563061582],[1162339200000,0.833114916846902],[1164931200000,0.835136442063848],[1167609600000,0.8370593562946],[1170288000000,0.838932965032257],[1172707200000,0.840732615530269],[1175385600000,0.842647312178839],[1177977600000,0.844529138498678],[1180656000000,0.84663283953745],[1183248000000,0.848810498815867],[1185926400000,0.850971722929918],[1188604800000,0.853264428358893],[1191196800000,0.855409217308578],[1193875200000,0.857438960107706],[1196467200000,0.859353656756276],[1199145600000,0.861153307254289],[1201824000000,0.862837911601743],[1204329600000,0.864448557709553],[1207008000000,0.866174249967921],[1209600000000,0.867867071897558],[1212278400000,0.869781768546128],[1214870400000,0.871770423434342],[1217548800000,0.87380016623347],[1220227200000,0.875969607929704],[1222819200000,0.877982915564467],[1225497600000,0.879889394630854],[1228089600000,0.881680827546683],[1230768000000,0.883357214311955],[1233446400000,0.884951425255399],[1235865600000,0.886479895541382],[1238544000000,0.888115194395741],[1241136000000,0.889734058085733],[1243814400000,0.891558361330294],[1246406400000,0.893473057978864],[1249084800000,0.895494583195809],[1251763200000,0.897639372145494],[1254355200000,0.899636244615892],[1257033600000,0.901518070935731],[1259625600000,0.903284851105012],[1262304000000,0.904928367541553],[1264982400000,0.906522578484998],[1267401600000,0.908042831188798],[1270080000000,0.907871995872802],[1272672000000,0.909333427123338],[1275350400000,0.910808064028442],[1277942400000,0.912428538364542],[1280620800000,0.914171298541104],[1283299200000,0.915968409806222],[1285891200000,0.917804973683399],[1288569600000,0.919414025580265],[1291161600000,0.920942011028899],[1293840000000,0.92241324585498],[1296518400000,0.923667544729019],[1298937600000,0.924916847313091],[1301616000000,0.926320689747691],[1304208000000,0.927724597922949],[1306886400000,0.929237808158818],[1309478400000,0.930929200229156],[1312156800000,0.932641070514292],[1314835200000,0.934479762745255],[1317427200000,0.936246879835405],[1320105600000,0.93777012373912],[1322697600000,0.939250841655039],[1325376000000,0.940676320983526],[1328054400000,0.941956603852427],[1330560000000,0.943274638293876],[1333238400000,0.944653203445681],[1335830400000,0.945995981027082],[1338508800000,0.947533194820507],[1341100800000,0.949120765957549],[1343779200000,0.95085923655621],[1346457600000,0.952703327738667],[1349049600000,0.954406249076806],[1351728000000,0.956048820491396],[1354320000000,0.957518855550477],[1356998400000,0.958807725792759],[1359676800000,0.959880514711547],[1362096000000,0.961048077005648],[1364774400000,0.962326987538324],[1367366400000,0.963689454446634],[1370044800000,0.965229330736687],[1372636800000,0.966772066745339],[1375315200000,0.968592663860335],[1377993600000,0.970448177482025],[1380585600000,0.972224366782906],[1383264000000,0.97391518362249],[1385856000000,0.975423315392571],[1388534400000,0.976921972290395],[1391212800000,0.97823645673634],[1393632000000,0.97957855225842],[1396310400000,0.980992099657577],[1398902400000,0.982473622896551],[1401580800000,0.984073150615668],[1404172800000,0.985702006885595],[1406851200000,0.987603703319152],[1409529600000,0.989506155770269],[1412121600000,0.991383363808922],[1414800000000,0.993112959418826],[1417392000000,0.994608132061805],[1420070400000,0.996107750416745],[1422748800000,0.997306408041825],[1425168000000,0.998590610697427],[1427846400000,1]]},{\"name\":\"psavert\",\"type\":\"line\",\"data\":[[-79056000000,0.688741721854304],[-76377600000,0.688741721854304],[-73699200000,0.642384105960265],[-71107200000,0.708609271523179],[-68428800000,0.701986754966887],[-65836800000,0.635761589403974],[-63158400000,0.629139072847682],[-60480000000,0.668874172185431],[-57974400000,0.629139072847682],[-55296000000,0.668874172185431],[-52704000000,0.649006622516556],[-50025600000,0.629139072847682],[-47433600000,0.562913907284768],[-44755200000,0.549668874172185],[-42076800000,0.556291390728477],[-39484800000,0.56953642384106],[-36806400000,0.556291390728477],[-34214400000,0.589403973509934],[-31536000000,0.536423841059603],[-28857600000,0.496688741721854],[-26438400000,0.529801324503311],[-23760000000,0.496688741721854],[-21168000000,0.52317880794702],[-18489600000,0.589403973509934],[-15897600000,0.635761589403974],[-13219200000,0.615894039735099],[-10540800000,0.622516556291391],[-7948800000,0.609271523178808],[-5270400000,0.622516556291391],[-2678400000,0.635761589403974],[0,0.635761589403974],[2678400000,0.629139072847682],[5097600000,0.675496688741722],[7776000000,0.735099337748344],[10368000000,0.675496688741722],[13046400000,0.668874172185431],[15638400000,0.748344370860927],[18316800000,0.741721854304636],[20995200000,0.708609271523179],[23587200000,0.721854304635761],[26265600000,0.754966887417218],[28857600000,0.728476821192053],[31536000000,0.735099337748344],[34214400000,0.735099337748344],[36633600000,0.748344370860927],[39312000000,0.728476821192053],[41904000000,0.754966887417218],[44582400000,0.827814569536424],[47174400000,0.768211920529801],[49852800000,0.754966887417218],[52531200000,0.735099337748344],[55123200000,0.735099337748344],[57801600000,0.721854304635761],[60393600000,0.71523178807947],[63072000000,0.682119205298013],[65750400000,0.701986754966887],[68256000000,0.635761589403974],[70934400000,0.615894039735099],[73526400000,0.629139072847682],[76204800000,0.629139072847682],[78796800000,0.629139072847682],[81475200000,0.649006622516556],[84153600000,0.662251655629139],[86745600000,0.71523178807947],[89424000000,0.754966887417218],[92016000000,0.76158940397351],[94694400000,0.675496688741722],[97372800000,0.682119205298013],[99792000000,0.695364238410596],[102470400000,0.728476821192053],[105062400000,0.728476821192053],[107740800000,0.754966887417218],[110332800000,0.728476821192053],[113011200000,0.774834437086093],[115689600000,0.721854304635761],[118281600000,0.80794701986755],[120960000000,0.80794701986755],[123552000000,0.834437086092715],[126230400000,0.801324503311258],[128908800000,0.794701986754967],[131328000000,0.741721854304636],[134006400000,0.721854304635761],[136598400000,0.701986754966887],[139276800000,0.701986754966887],[141868800000,0.701986754966887],[144547200000,0.655629139072847],[147225600000,0.708609271523179],[149817600000,0.741721854304636],[152496000000,0.768211920529801],[155088000000,0.781456953642384],[157766400000,0.728476821192053],[160444800000,0.682119205298013],[162864000000,0.695364238410596],[165542400000,0.794701986754967],[168134400000,1],[170812800000,0.801324503311258],[173404800000,0.688741721854304],[176083200000,0.71523178807947],[178761600000,0.71523178807947],[181353600000,0.741721854304636],[184032000000,0.695364238410596],[186624000000,0.649006622516556],[189302400000,0.629139072847682],[191980800000,0.668874172185431],[194486400000,0.662251655629139],[197164800000,0.629139072847682],[199756800000,0.668874172185431],[202435200000,0.609271523178808],[205027200000,0.629139072847682],[207705600000,0.629139072847682],[210384000000,0.609271523178808],[212976000000,0.589403973509934],[215654400000,0.609271523178808],[218246400000,0.556291390728477],[220924800000,0.556291390728477],[223603200000,0.470198675496689],[226022400000,0.549668874172185],[228700800000,0.549668874172185],[231292800000,0.536423841059603],[233971200000,0.556291390728477],[236563200000,0.549668874172185],[239241600000,0.576158940397351],[241920000000,0.589403973509934],[244512000000,0.582781456953642],[247190400000,0.596026490066225],[249782400000,0.609271523178808],[252460800000,0.642384105960265],[255139200000,0.589403973509934],[257558400000,0.582781456953642],[260236800000,0.56953642384106],[262828800000,0.536423841059603],[265507200000,0.516556291390728],[268099200000,0.576158940397351],[270777600000,0.549668874172185],[273456000000,0.556291390728477],[276048000000,0.562913907284768],[278726400000,0.549668874172185],[281318400000,0.543046357615894],[283996800000,0.589403973509934],[286675200000,0.589403973509934],[289094400000,0.596026490066225],[291772800000,0.582781456953642],[294364800000,0.536423841059603],[297043200000,0.509933774834437],[299635200000,0.556291390728477],[302313600000,0.496688741721854],[304992000000,0.47682119205298],[307584000000,0.496688741721854],[310262400000,0.496688741721854],[312854400000,0.52317880794702],[315532800000,0.509933774834437],[318211200000,0.52317880794702],[320716800000,0.529801324503311],[323395200000,0.602649006622517],[325987200000,0.609271523178808],[328665600000,0.596026490066225],[331257600000,0.602649006622517],[333936000000,0.602649006622517],[336614400000,0.629139072847682],[339206400000,0.602649006622517],[341884800000,0.622516556291391],[344476800000,0.609271523178808],[347155200000,0.576158940397351],[349833600000,0.56953642384106],[352252800000,0.56953642384106],[354931200000,0.576158940397351],[357523200000,0.582781456953642],[360201600000,0.56953642384106],[362793600000,0.668874172185431],[365472000000,0.649006622516556],[368150400000,0.675496688741722],[370742400000,0.71523178807947],[373420800000,0.728476821192053],[376012800000,0.682119205298013],[378691200000,0.695364238410596],[381369600000,0.655629139072847],[383788800000,0.662251655629139],[386467200000,0.708609271523179],[389059200000,0.668874172185431],[391737600000,0.668874172185431],[394329600000,0.682119205298013],[397008000000,0.688741721854304],[399686400000,0.635761589403974],[402278400000,0.602649006622517],[404956800000,0.576158940397351],[407548800000,0.576158940397351],[410227200000,0.589403973509934],[412905600000,0.589403973509934],[415324800000,0.556291390728477],[418003200000,0.536423841059603],[420595200000,0.509933774834437],[423273600000,0.456953642384106],[425865600000,0.490066225165563],[428544000000,0.463576158940397],[431222400000,0.490066225165563],[433814400000,0.496688741721854],[436492800000,0.536423841059603],[439084800000,0.52317880794702],[441763200000,0.516556291390728],[444441600000,0.629139072847682],[446947200000,0.615894039735099],[449625600000,0.615894039735099],[452217600000,0.589403973509934],[454896000000,0.589403973509934],[457488000000,0.622516556291391],[460166400000,0.635761589403974],[462844800000,0.635761589403974],[465436800000,0.629139072847682],[468115200000,0.576158940397351],[470707200000,0.596026490066225],[473385600000,0.536423841059603],[476064000000,0.456953642384106],[478483200000,0.43046357615894],[481161600000,0.509933774834437],[483753600000,0.589403973509934],[486432000000,0.490066225165563],[489024000000,0.456953642384106],[491702400000,0.397350993377483],[494380800000,0.337748344370861],[496972800000,0.456953642384106],[499651200000,0.450331125827815],[502243200000,0.423841059602649],[504921600000,0.423841059602649],[507600000000,0.470198675496689],[510019200000,0.509933774834437],[512697600000,0.496688741721854],[515289600000,0.470198675496689],[517968000000,0.47682119205298],[520560000000,0.470198675496689],[523238400000,0.450331125827815],[525916800000,0.33112582781457],[528508800000,0.410596026490066],[531187200000,0.437086092715232],[533779200000,0.317880794701987],[536457600000,0.496688741721854],[539136000000,0.417218543046358],[541555200000,0.417218543046358],[544233600000,0.152317880794702],[546825600000,0.397350993377483],[549504000000,0.364238410596026],[552096000000,0.350993377483444],[554774400000,0.33112582781457],[557452800000,0.357615894039735],[560044800000,0.403973509933775],[562723200000,0.417218543046358],[565315200000,0.43046357615894],[567993600000,0.390728476821192],[570672000000,0.423841059602649],[573177600000,0.397350993377483],[575856000000,0.437086092715232],[578448000000,0.410596026490066],[581126400000,0.410596026490066],[583718400000,0.423841059602649],[586396800000,0.410596026490066],[589075200000,0.443708609271523],[591667200000,0.423841059602649],[594345600000,0.410596026490066],[596937600000,0.403973509933775],[599616000000,0.417218543046358],[602294400000,0.450331125827815],[604713600000,0.483443708609271],[607392000000,0.410596026490066],[609984000000,0.390728476821192],[612662400000,0.397350993377483],[615254400000,0.397350993377483],[617932800000,0.357615894039735],[620611200000,0.390728476821192],[623203200000,0.417218543046358],[625881600000,0.423841059602649],[628473600000,0.370860927152318],[631152000000,0.384105960264901],[633830400000,0.423841059602649],[636249600000,0.403973509933775],[638928000000,0.437086092715232],[641520000000,0.43046357615894],[644198400000,0.423841059602649],[646790400000,0.43046357615894],[649468800000,0.390728476821192],[652147200000,0.390728476821192],[654739200000,0.370860927152318],[657417600000,0.377483443708609],[660009600000,0.437086092715232],[662688000000,0.470198675496689],[665366400000,0.437086092715232],[667785600000,0.384105960264901],[670464000000,0.423841059602649],[673056000000,0.410596026490066],[675734400000,0.443708609271523],[678326400000,0.397350993377483],[681004800000,0.423841059602649],[683683200000,0.437086092715232],[686275200000,0.470198675496689],[688953600000,0.450331125827815],[691545600000,0.496688741721854],[694224000000,0.47682119205298],[696902400000,0.503311258278146],[699408000000,0.496688741721854],[702086400000,0.509933774834437],[704678400000,0.509933774834437],[707356800000,0.52317880794702],[709948800000,0.490066225165563],[712627200000,0.496688741721854],[715305600000,0.43046357615894],[717897600000,0.384105960264901],[720576000000,0.384105960264901],[723168000000,0.556291390728477],[725846400000,0.423841059602649],[728524800000,0.443708609271523],[730944000000,0.443708609271523],[733622400000,0.43046357615894],[736214400000,0.403973509933775],[738892800000,0.370860927152318],[741484800000,0.357615894039735],[744163200000,0.364238410596026],[746841600000,0.311258278145695],[749433600000,0.271523178807947],[752112000000,0.271523178807947],[754704000000,0.456953642384106],[757382400000,0.324503311258278],[760060800000,0.28476821192053],[762480000000,0.304635761589404],[765158400000,0.278145695364238],[767750400000,0.357615894039735],[770428800000,0.311258278145695],[773020800000,0.317880794701987],[775699200000,0.28476821192053],[778377600000,0.304635761589404],[780969600000,0.324503311258278],[783648000000,0.317880794701987],[786240000000,0.33112582781457],[788918400000,0.350993377483444],[791596800000,0.370860927152318],[794016000000,0.350993377483444],[796694400000,0.311258278145695],[799286400000,0.324503311258278],[801964800000,0.298013245033113],[804556800000,0.324503311258278],[807235200000,0.298013245033113],[809913600000,0.304635761589404],[812505600000,0.324503311258278],[815184000000,0.291390728476821],[817776000000,0.258278145695364],[820454400000,0.298013245033113],[823132800000,0.298013245033113],[825638400000,0.291390728476821],[828316800000,0.231788079470199],[830908800000,0.298013245033113],[833587200000,0.324503311258278],[836179200000,0.298013245033113],[838857600000,0.291390728476821],[841536000000,0.298013245033113],[844128000000,0.278145695364238],[846806400000,0.278145695364238],[849398400000,0.278145695364238],[852076800000,0.264900662251656],[854755200000,0.264900662251656],[857174400000,0.278145695364238],[859852800000,0.28476821192053],[862444800000,0.304635761589404],[865123200000,0.291390728476821],[867715200000,0.258278145695364],[870393600000,0.251655629139073],[873072000000,0.264900662251656],[875664000000,0.264900662251656],[878342400000,0.278145695364238],[880934400000,0.278145695364238],[883612800000,0.344370860927152],[886291200000,0.344370860927152],[888710400000,0.350993377483444],[891388800000,0.33112582781457],[893980800000,0.311258278145695],[896659200000,0.304635761589404],[899251200000,0.311258278145695],[901929600000,0.304635761589404],[904608000000,0.278145695364238],[907200000000,0.264900662251656],[909878400000,0.271523178807947],[912470400000,0.23841059602649],[915148800000,0.278145695364238],[917827200000,0.264900662251656],[920246400000,0.245033112582781],[922924800000,0.198675496688742],[925516800000,0.178807947019868],[928195200000,0.172185430463576],[930787200000,0.172185430463576],[933465600000,0.165562913907285],[936144000000,0.132450331125828],[938736000000,0.158940397350993],[941414400000,0.172185430463576],[944006400000,0.145695364238411],[946684800000,0.211920529801325],[949363200000,0.172185430463576],[951868800000,0.152317880794702],[954547200000,0.185430463576159],[957139200000,0.178807947019868],[959817600000,0.178807947019868],[962409600000,0.198675496688742],[965088000000,0.198675496688742],[967766400000,0.152317880794702],[970358400000,0.158940397350993],[973036800000,0.152317880794702],[975628800000,0.132450331125828],[978307200000,0.172185430463576],[980985600000,0.178807947019868],[983404800000,0.205298013245033],[986083200000,0.185430463576159],[988675200000,0.152317880794702],[991353600000,0.152317880794702],[993945600000,0.225165562913907],[996624000000,0.304635761589404],[999302400000,0.317880794701987],[1001894400000,0.0794701986754967],[1004572800000,0.125827814569536],[1007164800000,0.152317880794702],[1009843200000,0.258278145695364],[1012521600000,0.23841059602649],[1014940800000,0.245033112582781],[1017619200000,0.23841059602649],[1020211200000,0.28476821192053],[1022889600000,0.278145695364238],[1025481600000,0.218543046357616],[1028160000000,0.211920529801325],[1030838400000,0.231788079470199],[1033430400000,0.231788079470199],[1036108800000,0.231788079470199],[1038700800000,0.218543046357616],[1041379200000,0.218543046357616],[1044057600000,0.225165562913907],[1046476800000,0.205298013245033],[1049155200000,0.205298013245033],[1051747200000,0.23841059602649],[1054425600000,0.225165562913907],[1057017600000,0.271523178807947],[1059696000000,0.251655629139073],[1062374400000,0.198675496688742],[1064966400000,0.205298013245033],[1067644800000,0.211920529801325],[1070236800000,0.211920529801325],[1072915200000,0.185430463576159],[1075593600000,0.185430463576159],[1078099200000,0.178807947019868],[1080777600000,0.205298013245033],[1083369600000,0.205298013245033],[1086048000000,0.23841059602649],[1088640000000,0.205298013245033],[1091318400000,0.198675496688742],[1093996800000,0.158940397350993],[1096588800000,0.152317880794702],[1099267200000,0.125827814569536],[1101859200000,0.311258278145695],[1104537600000,0.0993377483443709],[1107216000000,0.0794701986754967],[1109635200000,0.0927152317880795],[1112313600000,0.0596026490066225],[1114905600000,0.0860927152317881],[1117584000000,0.0463576158940397],[1120176000000,0],[1122854400000,0.0331125827814569],[1125532800000,0.0331125827814569],[1128124800000,0.0596026490066225],[1130803200000,0.0860927152317881],[1133395200000,0.0993377483443709],[1136073600000,0.132450331125828],[1138752000000,0.132450331125828],[1141171200000,0.132450331125828],[1143849600000,0.119205298013245],[1146441600000,0.105960264900662],[1149120000000,0.119205298013245],[1151712000000,0.0794701986754967],[1154390400000,0.0927152317880795],[1157068800000,0.0927152317880795],[1159660800000,0.0927152317880795],[1162339200000,0.112582781456954],[1164931200000,0.0993377483443709],[1167609600000,0.0993377483443709],[1170288000000,0.125827814569536],[1172707200000,0.145695364238411],[1175385600000,0.132450331125828],[1177977600000,0.119205298013245],[1180656000000,0.105960264900662],[1183248000000,0.0993377483443709],[1185926400000,0.0794701986754967],[1188604800000,0.0860927152317881],[1191196800000,0.0794701986754967],[1193875200000,0.0596026490066225],[1196467200000,0.0927152317880795],[1199145600000,0.0993377483443709],[1201824000000,0.125827814569536],[1204329600000,0.119205298013245],[1207008000000,0.0794701986754967],[1209600000000,0.370860927152318],[1212278400000,0.218543046357616],[1214870400000,0.145695364238411],[1217548800000,0.105960264900662],[1220227200000,0.165562913907285],[1222819200000,0.218543046357616],[1225497600000,0.278145695364238],[1228089600000,0.278145695364238],[1230768000000,0.264900662251656],[1233446400000,0.218543046357616],[1235865600000,0.245033112582781],[1238544000000,0.304635761589404],[1241136000000,0.397350993377483],[1243814400000,0.298013245033113],[1246406400000,0.251655629139073],[1249084800000,0.178807947019868],[1251763200000,0.245033112582781],[1254355200000,0.211920529801325],[1257033600000,0.245033112582781],[1259625600000,0.245033112582781],[1262304000000,0.258278145695364],[1264982400000,0.23841059602649],[1267401600000,0.231788079470199],[1270080000000,0.278145695364238],[1272672000000,0.317880794701987],[1275350400000,0.311258278145695],[1277942400000,0.304635761589404],[1280620800000,0.311258278145695],[1283299200000,0.298013245033113],[1285891200000,0.291390728476821],[1288569600000,0.291390728476821],[1291161600000,0.324503311258278],[1293840000000,0.344370860927152],[1296518400000,0.357615894039735],[1298937600000,0.317880794701987],[1301616000000,0.311258278145695],[1304208000000,0.311258278145695],[1306886400000,0.33112582781457],[1309478400000,0.337748344370861],[1312156800000,0.33112582781457],[1314835200000,0.304635761589404],[1317427200000,0.304635761589404],[1320105600000,0.317880794701987],[1322697600000,0.370860927152318],[1325376000000,0.384105960264901],[1328054400000,0.384105960264901],[1330560000000,0.417218543046358],[1333238400000,0.43046357615894],[1335830400000,0.437086092715232],[1338508800000,0.456953642384106],[1341100800000,0.397350993377483],[1343779200000,0.384105960264901],[1346457600000,0.397350993377483],[1349049600000,0.437086092715232],[1351728000000,0.496688741721854],[1354320000000,0.649006622516556],[1356998400000,0.271523178807947],[1359676800000,0.23841059602649],[1362096000000,0.245033112582781],[1364774400000,0.278145695364238],[1367366400000,0.298013245033113],[1370044800000,0.304635761589404],[1372636800000,0.291390728476821],[1375315200000,0.298013245033113],[1377993600000,0.304635761589404],[1380585600000,0.271523178807947],[1383264000000,0.264900662251656],[1385856000000,0.278145695364238],[1388534400000,0.324503311258278],[1391212800000,0.337748344370861],[1393632000000,0.344370860927152],[1396310400000,0.344370860927152],[1398902400000,0.344370860927152],[1401580800000,0.344370860927152],[1404172800000,0.350993377483444],[1406851200000,0.33112582781457],[1409529600000,0.344370860927152],[1412121600000,0.33112582781457],[1414800000000,0.337748344370861],[1417392000000,0.357615894039735],[1420070400000,0.364238410596026],[1422748800000,0.377483443708609],[1425168000000,0.344370860927152],[1427846400000,0.357615894039735]]},{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[-79056000000,0.0235849056603774],[-76377600000,0.0330188679245283],[-73699200000,0.0283018867924528],[-71107200000,0.0424528301886793],[-68428800000,0.0330188679245283],[-65836800000,0.0377358490566038],[-63158400000,0.0518867924528302],[-60480000000,0.0235849056603774],[-57974400000,0.00471698113207546],[-55296000000,0.0283018867924528],[-52704000000,0.0188679245283019],[-50025600000,0.0188679245283019],[-47433600000,0.0235849056603774],[-44755200000,0.00943396226415095],[-42076800000,0.0283018867924528],[-39484800000,0.0377358490566038],[-36806400000,0.0188679245283019],[-34214400000,0.0188679245283019],[-31536000000,0.0188679245283019],[-28857600000,0.0424528301886793],[-26438400000,0],[-23760000000,0],[-21168000000,0.00943396226415095],[-18489600000,0.0188679245283019],[-15897600000,0.0188679245283019],[-13219200000,0.0188679245283019],[-10540800000,0.0330188679245283],[-7948800000,0.0235849056603774],[-5270400000,0.0377358490566038],[-2678400000,0.0283018867924528],[0,0.0283018867924528],[2678400000,0.0235849056603774],[5097600000,0.0283018867924528],[7776000000,0.00471698113207546],[10368000000,0.0330188679245283],[13046400000,0.0424528301886793],[15638400000,0.0518867924528302],[18316800000,0.0660377358490566],[20995200000,0.0566037735849057],[23587200000,0.0566037735849057],[26265600000,0.0754716981132075],[28857600000,0.089622641509434],[31536000000,0.10377358490566],[34214400000,0.108490566037736],[36633600000,0.113207547169811],[39312000000,0.117924528301887],[41904000000,0.127358490566038],[44582400000,0.080188679245283],[47174400000,0.10377358490566],[49852800000,0.113207547169811],[52531200000,0.0849056603773585],[55123200000,0.117924528301887],[57801600000,0.113207547169811],[60393600000,0.10377358490566],[63072000000,0.10377358490566],[65750400000,0.122641509433962],[68256000000,0.122641509433962],[70934400000,0.127358490566038],[73526400000,0.122641509433962],[76204800000,0.0660377358490566],[78796800000,0.0990566037735849],[81475200000,0.0943396226415094],[84153600000,0.0754716981132075],[86745600000,0.080188679245283],[89424000000,0.080188679245283],[92016000000,0.0990566037735849],[94694400000,0.080188679245283],[97372800000,0.0566037735849057],[99792000000,0.0707547169811321],[102470400000,0.0471698113207547],[105062400000,0.0424528301886793],[107740800000,0.0471698113207547],[110332800000,0.0566037735849057],[113011200000,0.0424528301886793],[115689600000,0.0660377358490566],[118281600000,0.0707547169811321],[120960000000,0.0518867924528302],[123552000000,0.0330188679245283],[126230400000,0.0471698113207547],[128908800000,0.0518867924528302],[131328000000,0.0377358490566038],[134006400000,0.0471698113207547],[136598400000,0.0283018867924528],[139276800000,0.0613207547169811],[141868800000,0.080188679245283],[144547200000,0.0471698113207547],[147225600000,0.0613207547169811],[149817600000,0.0707547169811321],[152496000000,0.0566037735849057],[155088000000,0.080188679245283],[157766400000,0.108490566037736],[160444800000,0.14622641509434],[162864000000,0.150943396226415],[165542400000,0.221698113207547],[168134400000,0.254716981132075],[170812800000,0.226415094339623],[173404800000,0.216981132075472],[176083200000,0.245283018867925],[178761600000,0.245283018867925],[181353600000,0.216981132075472],[184032000000,0.259433962264151],[186624000000,0.235849056603774],[189302400000,0.235849056603774],[191980800000,0.19811320754717],[194486400000,0.221698113207547],[197164800000,0.19811320754717],[199756800000,0.202830188679245],[202435200000,0.179245283018868],[205027200000,0.174528301886792],[207705600000,0.183962264150943],[210384000000,0.179245283018868],[212976000000,0.174528301886792],[215654400000,0.207547169811321],[218246400000,0.188679245283019],[220924800000,0.165094339622642],[223603200000,0.150943396226415],[226022400000,0.150943396226415],[228700800000,0.155660377358491],[231292800000,0.183962264150943],[233971200000,0.10377358490566],[236563200000,0.14622641509434],[239241600000,0.141509433962264],[241920000000,0.127358490566038],[244512000000,0.136792452830189],[247190400000,0.141509433962264],[249782400000,0.132075471698113],[252460800000,0.117924528301887],[255139200000,0.127358490566038],[257558400000,0.10377358490566],[260236800000,0.0990566037735849],[262828800000,0.080188679245283],[265507200000,0.0943396226415094],[268099200000,0.0849056603773585],[270777600000,0.0849056603773585],[273456000000,0.0754716981132075],[276048000000,0.089622641509434],[278726400000,0.0707547169811321],[281318400000,0.0754716981132075],[283996800000,0.089622641509434],[286675200000,0.089622641509434],[289094400000,0.089622641509434],[291772800000,0.0660377358490566],[294364800000,0.0754716981132075],[297043200000,0.0754716981132075],[299635200000,0.089622641509434],[302313600000,0.0377358490566038],[304992000000,0.0707547169811321],[307584000000,0.0707547169811321],[310262400000,0.0613207547169811],[312854400000,0.080188679245283],[315532800000,0.0613207547169811],[318211200000,0.0849056603773585],[320716800000,0.0943396226415094],[323395200000,0.0849056603773585],[325987200000,0.080188679245283],[328665600000,0.113207547169811],[331257600000,0.141509433962264],[333936000000,0.165094339622642],[336614400000,0.174528301886792],[339206400000,0.165094339622642],[341884800000,0.174528301886792],[344476800000,0.165094339622642],[347155200000,0.160377358490566],[349833600000,0.14622641509434],[352252800000,0.14622641509434],[354931200000,0.160377358490566],[357523200000,0.136792452830189],[360201600000,0.122641509433962],[362793600000,0.14622641509434],[365472000000,0.150943396226415],[368150400000,0.132075471698113],[370742400000,0.132075471698113],[373420800000,0.136792452830189],[376012800000,0.136792452830189],[378691200000,0.14622641509434],[381369600000,0.165094339622642],[383788800000,0.174528301886792],[386467200000,0.193396226415094],[389059200000,0.212264150943396],[391737600000,0.259433962264151],[394329600000,0.212264150943396],[397008000000,0.221698113207547],[399686400000,0.259433962264151],[402278400000,0.268867924528302],[404956800000,0.283018867924528],[407548800000,0.292452830188679],[410227200000,0.334905660377358],[412905600000,0.273584905660377],[415324800000,0.30188679245283],[418003200000,0.325471698113208],[420595200000,0.391509433962264],[423273600000,0.344339622641509],[425865600000,0.287735849056604],[428544000000,0.25],[431222400000,0.25],[433814400000,0.254716981132075],[436492800000,0.25],[439084800000,0.221698113207547],[441763200000,0.240566037735849],[444441600000,0.202830188679245],[446947200000,0.202830188679245],[449625600000,0.19811320754717],[452217600000,0.240566037735849],[454896000000,0.165094339622642],[457488000000,0.165094339622642],[460166400000,0.155660377358491],[462844800000,0.169811320754717],[465436800000,0.150943396226415],[468115200000,0.150943396226415],[470707200000,0.155660377358491],[473385600000,0.132075471698113],[476064000000,0.14622641509434],[478483200000,0.14622641509434],[481161600000,0.136792452830189],[483753600000,0.136792452830189],[486432000000,0.122641509433962],[489024000000,0.136792452830189],[491702400000,0.14622641509434],[494380800000,0.136792452830189],[496972800000,0.14622641509434],[499651200000,0.141509433962264],[502243200000,0.132075471698113],[504921600000,0.127358490566038],[507600000000,0.136792452830189],[510019200000,0.132075471698113],[512697600000,0.127358490566038],[515289600000,0.132075471698113],[517968000000,0.141509433962264],[520560000000,0.136792452830189],[523238400000,0.14622641509434],[525916800000,0.160377358490566],[528508800000,0.141509433962264],[531187200000,0.14622641509434],[533779200000,0.14622641509434],[536457600000,0.136792452830189],[539136000000,0.122641509433962],[541555200000,0.122641509433962],[544233600000,0.14622641509434],[546825600000,0.122641509433962],[549504000000,0.117924528301887],[552096000000,0.117924528301887],[554774400000,0.113207547169811],[557452800000,0.0943396226415094],[560044800000,0.108490566037736],[562723200000,0.10377358490566],[565315200000,0.0943396226415094],[567993600000,0.10377358490566],[570672000000,0.108490566037736],[573177600000,0.113207547169811],[575856000000,0.089622641509434],[578448000000,0.089622641509434],[581126400000,0.0849056603773585],[583718400000,0.0990566037735849],[586396800000,0.089622641509434],[589075200000,0.080188679245283],[591667200000,0.0754716981132075],[594345600000,0.080188679245283],[596937600000,0.089622641509434],[599616000000,0.0754716981132075],[602294400000,0.0660377358490566],[604713600000,0.0660377358490566],[607392000000,0.0660377358490566],[609984000000,0.0613207547169811],[612662400000,0.0660377358490566],[615254400000,0.0754716981132075],[617932800000,0.0471698113207547],[620611200000,0.0424528301886793],[623203200000,0.0424528301886793],[625881600000,0.0377358490566038],[628473600000,0.0424528301886793],[631152000000,0.0518867924528302],[633830400000,0.0613207547169811],[636249600000,0.0518867924528302],[638928000000,0.0377358490566038],[641520000000,0.0566037735849057],[644198400000,0.0566037735849057],[646790400000,0.0660377358490566],[649468800000,0.0660377358490566],[652147200000,0.0754716981132075],[654739200000,0.0849056603773585],[657417600000,0.080188679245283],[660009600000,0.089622641509434],[662688000000,0.0943396226415094],[665366400000,0.10377358490566],[667785600000,0.127358490566038],[670464000000,0.122641509433962],[673056000000,0.113207547169811],[675734400000,0.136792452830189],[678326400000,0.141509433962264],[681004800000,0.155660377358491],[683683200000,0.132075471698113],[686275200000,0.150943396226415],[688953600000,0.165094339622642],[691545600000,0.179245283018868],[694224000000,0.193396226415094],[696902400000,0.19811320754717],[699408000000,0.202830188679245],[702086400000,0.212264150943396],[704678400000,0.226415094339623],[707356800000,0.221698113207547],[709948800000,0.216981132075472],[712627200000,0.226415094339623],[715305600000,0.216981132075472],[717897600000,0.235849056603774],[720576000000,0.235849056603774],[723168000000,0.25],[725846400000,0.216981132075472],[728524800000,0.212264150943396],[730944000000,0.212264150943396],[733622400000,0.207547169811321],[736214400000,0.193396226415094],[738892800000,0.202830188679245],[741484800000,0.19811320754717],[744163200000,0.19811320754717],[746841600000,0.202830188679245],[749433600000,0.188679245283019],[752112000000,0.202830188679245],[754704000000,0.202830188679245],[757382400000,0.216981132075472],[760060800000,0.245283018867925],[762480000000,0.25],[765158400000,0.240566037735849],[767750400000,0.245283018867925],[770428800000,0.25],[773020800000,0.235849056603774],[775699200000,0.231132075471698],[778377600000,0.245283018867925],[780969600000,0.283018867924528],[783648000000,0.235849056603774],[786240000000,0.221698113207547],[788918400000,0.188679245283019],[791596800000,0.193396226415094],[794016000000,0.202830188679245],[796694400000,0.202830188679245],[799286400000,0.240566037735849],[801964800000,0.183962264150943],[804556800000,0.212264150943396],[807235200000,0.202830188679245],[809913600000,0.183962264150943],[812505600000,0.19811320754717],[815184000000,0.188679245283019],[817776000000,0.202830188679245],[820454400000,0.202830188679245],[823132800000,0.179245283018868],[825638400000,0.202830188679245],[828316800000,0.216981132075472],[830908800000,0.216981132075472],[833587200000,0.202830188679245],[836179200000,0.202830188679245],[838857600000,0.207547169811321],[841536000000,0.212264150943396],[844128000000,0.202830188679245],[846806400000,0.174528301886792],[849398400000,0.179245283018868],[852076800000,0.179245283018868],[854755200000,0.193396226415094],[857174400000,0.183962264150943],[859852800000,0.202830188679245],[862444800000,0.188679245283019],[865123200000,0.188679245283019],[867715200000,0.202830188679245],[870393600000,0.179245283018868],[873072000000,0.19811320754717],[875664000000,0.174528301886792],[878342400000,0.169811320754717],[880934400000,0.165094339622642],[883612800000,0.160377358490566],[886291200000,0.141509433962264],[888710400000,0.132075471698113],[891388800000,0.127358490566038],[893980800000,0.0943396226415094],[896659200000,0.136792452830189],[899251200000,0.127358490566038],[901929600000,0.132075471698113],[904608000000,0.127358490566038],[907200000000,0.0849056603773585],[909878400000,0.122641509433962],[912470400000,0.132075471698113],[915148800000,0.136792452830189],[917827200000,0.132075471698113],[920246400000,0.132075471698113],[922924800000,0.10377358490566],[925516800000,0.117924528301887],[928195200000,0.108490566037736],[930787200000,0.0849056603773585],[933465600000,0.117924528301887],[936144000000,0.0943396226415094],[938736000000,0.0990566037735849],[941414400000,0.10377358490566],[944006400000,0.0849056603773585],[946684800000,0.0849056603773585],[949363200000,0.0990566037735849],[951868800000,0.0943396226415094],[954547200000,0.0990566037735849],[957139200000,0.0849056603773585],[959817600000,0.080188679245283],[962409600000,0.0943396226415094],[965088000000,0.108490566037736],[967766400000,0.0566037735849057],[970358400000,0.0990566037735849],[973036800000,0.0990566037735849],[975628800000,0.0943396226415094],[978307200000,0.0849056603773585],[980985600000,0.0990566037735849],[983404800000,0.122641509433962],[986083200000,0.089622641509434],[988675200000,0.108490566037736],[991353600000,0.0943396226415094],[993945600000,0.132075471698113],[996624000000,0.136792452830189],[999302400000,0.150943396226415],[1001894400000,0.155660377358491],[1004572800000,0.174528301886792],[1007164800000,0.19811320754717],[1009843200000,0.207547169811321],[1012521600000,0.202830188679245],[1014940800000,0.207547169811321],[1017619200000,0.231132075471698],[1020211200000,0.259433962264151],[1022889600000,0.330188679245283],[1025481600000,0.231132075471698],[1028160000000,0.235849056603774],[1030838400000,0.259433962264151],[1033430400000,0.264150943396226],[1036108800000,0.25],[1038700800000,0.264150943396226],[1041379200000,0.264150943396226],[1044057600000,0.259433962264151],[1046476800000,0.268867924528302],[1049155200000,0.292452830188679],[1051747200000,0.278301886792453],[1054425600000,0.35377358490566],[1057017600000,0.297169811320755],[1059696000000,0.287735849056604],[1062374400000,0.292452830188679],[1064966400000,0.30188679245283],[1067644800000,0.297169811320755],[1070236800000,0.30188679245283],[1072915200000,0.311320754716981],[1075593600000,0.292452830188679],[1078099200000,0.292452830188679],[1080777600000,0.259433962264151],[1083369600000,0.278301886792453],[1086048000000,0.330188679245283],[1088640000000,0.231132075471698],[1091318400000,0.245283018867925],[1093996800000,0.264150943396226],[1096588800000,0.259433962264151],[1099267200000,0.268867924528302],[1101859200000,0.259433962264151],[1104537600000,0.254716981132075],[1107216000000,0.245283018867925],[1109635200000,0.25],[1112313600000,0.235849056603774],[1114905600000,0.240566037735849],[1117584000000,0.235849056603774],[1120176000000,0.226415094339623],[1122854400000,0.245283018867925],[1125532800000,0.207547169811321],[1128124800000,0.216981132075472],[1130803200000,0.212264150943396],[1133395200000,0.221698113207547],[1136073600000,0.216981132075472],[1138752000000,0.240566037735849],[1141171200000,0.221698113207547],[1143849600000,0.207547169811321],[1146441600000,0.212264150943396],[1149120000000,0.155660377358491],[1151712000000,0.188679245283019],[1154390400000,0.207547169811321],[1157068800000,0.188679245283019],[1159660800000,0.183962264150943],[1162339200000,0.202830188679245],[1164931200000,0.165094339622642],[1167609600000,0.202830188679245],[1170288000000,0.212264150943396],[1172707200000,0.240566037735849],[1175385600000,0.216981132075472],[1177977600000,0.19811320754717],[1180656000000,0.174528301886792],[1183248000000,0.221698113207547],[1185926400000,0.226415094339623],[1188604800000,0.221698113207547],[1191196800000,0.207547169811321],[1193875200000,0.216981132075472],[1196467200000,0.207547169811321],[1199145600000,0.235849056603774],[1201824000000,0.221698113207547],[1204329600000,0.221698113207547],[1207008000000,0.254716981132075],[1209600000000,0.183962264150943],[1212278400000,0.235849056603774],[1214870400000,0.268867924528302],[1217548800000,0.268867924528302],[1220227200000,0.292452830188679],[1222819200000,0.30188679245283],[1225497600000,0.273584905660377],[1228089600000,0.306603773584906],[1230768000000,0.316037735849057],[1233446400000,0.363207547169811],[1235865600000,0.391509433962264],[1238544000000,0.429245283018868],[1241136000000,0.481132075471698],[1243814400000,0.622641509433962],[1246406400000,0.566037735849057],[1249084800000,0.580188679245283],[1251763200000,0.650943396226415],[1254355200000,0.702830188679245],[1257033600000,0.745283018867925],[1259625600000,0.759433962264151],[1262304000000,0.754716981132076],[1264982400000,0.75],[1267401600000,0.773584905660377],[1270080000000,0.85377358490566],[1272672000000,0.863207547169811],[1275350400000,1],[1277942400000,0.863207547169811],[1280620800000,0.80188679245283],[1283299200000,0.768867924528302],[1285891200000,0.811320754716981],[1288569600000,0.80188679245283],[1291161600000,0.844339622641509],[1293840000000,0.825471698113208],[1296518400000,0.806603773584906],[1298937600000,0.825471698113208],[1301616000000,0.797169811320755],[1304208000000,0.830188679245283],[1306886400000,0.867924528301887],[1309478400000,0.849056603773585],[1312156800000,0.867924528301887],[1314835200000,0.849056603773585],[1317427200000,0.783018867924528],[1320105600000,0.792452830188679],[1322697600000,0.778301886792453],[1325376000000,0.792452830188679],[1328054400000,0.740566037735849],[1330560000000,0.716981132075472],[1333238400000,0.712264150943396],[1335830400000,0.75],[1338508800000,0.773584905660377],[1341100800000,0.636792452830189],[1343779200000,0.679245283018868],[1346457600000,0.69811320754717],[1349049600000,0.75],[1351728000000,0.688679245283019],[1354320000000,0.64622641509434],[1356998400000,0.556603773584906],[1359676800000,0.622641509433962],[1362096000000,0.641509433962264],[1364774400000,0.617924528301887],[1367366400000,0.617924528301887],[1370044800000,0.613207547169811],[1372636800000,0.575471698113208],[1375315200000,0.589622641509434],[1377993600000,0.589622641509434],[1380585600000,0.580188679245283],[1383264000000,0.617924528301887],[1385856000000,0.627358490566038],[1388534400000,0.537735849056604],[1391212800000,0.561320754716981],[1393632000000,0.556603773584906],[1396310400000,0.55188679245283],[1398902400000,0.5],[1401580800000,0.462264150943396],[1404172800000,0.429245283018868],[1406851200000,0.419811320754717],[1409529600000,0.443396226415094],[1412121600000,0.452830188679245],[1414800000000,0.424528301886792],[1417392000000,0.419811320754717],[1420070400000,0.433962264150943],[1422748800000,0.419811320754717],[1425168000000,0.377358490566038],[1427846400000,0.35377358490566]]},{\"name\":\"unemploy\",\"type\":\"line\",\"data\":[[-79056000000,0.0204468303465698],[-76377600000,0.0205257756374832],[-73699200000,0.0215520644193574],[-71107200000,0.0361569432383358],[-68428800000,0.0300781558380043],[-65836800000,0.0262887818741612],[-63158400000,0.0152364411462856],[-60480000000,0.0249467119286335],[-57974400000,0.0151574958553722],[-55296000000,0.00189468698192153],[-52704000000,0.00434199100023684],[-50025600000,0.0199731586010894],[-47433600000,0.0156311676008526],[-44755200000,0.00655245914581195],[-42076800000,7.8945290913397e-05],[-39484800000,0.000315781163653588],[-36806400000,0.00236835872740191],[-34214400000,0],[-31536000000,0.0026051946001421],[-28857600000,0.000552617036393779],[-26438400000,0.00213152285466172],[-23760000000,0.00576300623667798],[-21168000000,0.00221046814557512],[-18489600000,0.010341833109655],[-15897600000,0.0144469882371517],[-13219200000,0.0134996447461909],[-10540800000,0.0280255782742559],[-7948800000,0.0287360858924765],[-5270400000,0.0134996447461909],[-2678400000,0.015710112891766],[0,0.0407357701113129],[2678400000,0.0606299834214889],[5097600000,0.0749980263677272],[7776000000,0.0877871634956975],[10368000000,0.0974184889871319],[13046400000,0.109418173205968],[15638400000,0.117628483460962],[18316800000,0.124023052024947],[20995200000,0.139812110207626],[23587200000,0.150469724480935],[26265600000,0.174705928791348],[28857600000,0.188758190573932],[31536000000,0.181653114391727],[34214400000,0.175100655245915],[36633600000,0.18173205968264],[39312000000,0.179521591537065],[41904000000,0.182442567300861],[44582400000,0.178732138627931],[47174400000,0.185521433646483],[49852800000,0.193337017446909],[52531200000,0.186074050682877],[55123200000,0.179126865082498],[57801600000,0.195468540301571],[60393600000,0.194915923265177],[63072000000,0.184258308991869],[65750400000,0.17707428751875],[68256000000,0.185758269519223],[70934400000,0.179521591537065],[73526400000,0.176600615773269],[76204800000,0.176679561064183],[78796800000,0.175890108155049],[81475200000,0.177942685718797],[84153600000,0.170837609536591],[86745600000,0.172890187100339],[89424000000,0.151338122680982],[92016000000,0.146680350517092],[94694400000,0.129549222388884],[97372800000,0.139496329043973],[99792000000,0.134917502170995],[102470400000,0.140048946080366],[105062400000,0.129786058261625],[107740800000,0.13247019815268],[110332800000,0.127891371279703],[113011200000,0.127891371279703],[115689600000,0.131443909370806],[118281600000,0.115181179442646],[120960000000,0.135075392752822],[123552000000,0.142417304807768],[126230400000,0.154653824899345],[128908800000,0.16152206520881],[131328000000,0.153864371990211],[134006400000,0.152601247335596],[136598400000,0.159469487645062],[139276800000,0.176995342227836],[141868800000,0.187731901792058],[144547200000,0.184495144864609],[147225600000,0.217257440593669],[149817600000,0.224046735612221],[152496000000,0.272755980105787],[155088000000,0.311912844398832],[157766400000,0.38020052103892],[160444800000,0.381700481566275],[162864000000,0.41785742480461],[165542400000,0.436172732296519],[168134400000,0.453777532170206],[170812800000,0.436962185205652],[173404800000,0.429620273150707],[176083200000,0.413910160258941],[178761600000,0.413515433804374],[181353600000,0.411462856240625],[184032000000,0.403331491276545],[186624000000,0.399384226730875],[189302400000,0.382805715639062],[191980800000,0.366385095129076],[194486400000,0.358806347201389],[197164800000,0.366700876292729],[199756800000,0.344833030709718],[202435200000,0.366069313965422],[205027200000,0.379332122838873],[207705600000,0.381542590984448],[210384000000,0.370648140838399],[212976000000,0.374595405384069],[215654400000,0.389595010657614],[218246400000,0.383674113839109],[220924800000,0.362753611747059],[223603200000,0.375621694165943],[226022400000,0.364885134601721],[228700800000,0.345306702455199],[231292800000,0.333622799400016],[233971200000,0.351227599273703],[236563200000,0.327149285545117],[239241600000,0.334728033472803],[241920000000,0.320991552853872],[244512000000,0.321938896344833],[247190400000,0.32604405147233],[249782400000,0.292176521670482],[252460800000,0.300307886634562],[255139200000,0.286808241888371],[257558400000,0.288308202415726],[260236800000,0.275913791742323],[262828800000,0.271729691323913],[265507200000,0.263914107523486],[268099200000,0.286097734270151],[270777600000,0.268019262650983],[273456000000,0.271571800742086],[276048000000,0.257519538959501],[278726400000,0.267782426778243],[281318400000,0.279703165706166],[283996800000,0.270308676087471],[286675200000,0.275361174705929],[289094400000,0.270308676087471],[291772800000,0.267150864450935],[294364800000,0.249072392831768],[297043200000,0.258466882450462],[299635200000,0.261387858214258],[302313600000,0.286966132470198],[304992000000,0.276703244651457],[307584000000,0.285071445488277],[310262400000,0.2804926186153],[312854400000,0.287360858924765],[315532800000,0.315623273071761],[318211200000,0.317123233599116],[320716800000,0.319254756453778],[323395200000,0.368911344438304],[325987200000,0.418331096550091],[328665600000,0.427330859714218],[331257600000,0.448251361806268],[333936000000,0.44177784795137],[336614400000,0.421252072313886],[339206400000,0.426541406805084],[341884800000,0.421409962895713],[344476800000,0.397331649167127],[347155200000,0.425199336859556],[349833600000,0.423620431041288],[352252800000,0.418173205968264],[354931200000,0.40925238809505],[357523200000,0.433330701823636],[360201600000,0.427330859714218],[362793600000,0.40877871634957],[365472000000,0.422436251677587],[368150400000,0.437751638114786],[370742400000,0.47059287913476],[373420800000,0.500828925554591],[376012800000,0.519617904791979],[378691200000,0.529880792610721],[381369600000,0.554195942212047],[383788800000,0.569195547485593],[386467200000,0.596747454014368],[389059200000,0.603931475487487],[391737600000,0.619957369542907],[394329600000,0.644509355016973],[397008000000,0.647035604326202],[399686400000,0.673561222073103],[402278400000,0.698192152838083],[404956800000,0.730480776821663],[407548800000,0.739401594694876],[410227200000,0.69858687929265],[412905600000,0.699455277492698],[415324800000,0.688639772637562],[418003200000,0.677587431909687],[420595200000,0.668587668745559],[423273600000,0.675850635509592],[425865600000,0.620746822452041],[428544000000,0.626667719270546],[431222400000,0.599747375069077],[433814400000,0.568563985158285],[436492800000,0.537933212283887],[439084800000,0.524670403410437],[441763200000,0.499171074445409],[444441600000,0.482039946317202],[446947200000,0.478487408226099],[449625600000,0.479750532880714],[452217600000,0.455593273861214],[454896000000,0.437435856951133],[457488000000,0.461987842425199],[460166400000,0.460566827188758],[462844800000,0.448567142969922],[465436800000,0.449672377042709],[468115200000,0.435225388805558],[470707200000,0.447856635351701],[473385600000,0.452988079261072],[476064000000,0.444935659587906],[478483200000,0.446356674824347],[481161600000,0.450777611115497],[483753600000,0.443435699060551],[486432000000,0.455909055024868],[489024000000,0.460093155443278],[491702400000,0.435067498223731],[494380800000,0.439172653351228],[496972800000,0.443119917896897],[499651200000,0.42969921844162],[502243200000,0.430488671350754],[504921600000,0.403410436567459],[507600000000,0.451330228151891],[510019200000,0.449830267624536],[512697600000,0.448330307097182],[515289600000,0.454251203915686],[517968000000,0.459698428988711],[520560000000,0.444777769006079],[523238400000,0.430251835478014],[525916800000,0.444067261387858],[528508800000,0.438777926896661],[531187200000,0.432146522459935],[533779200000,0.410357622167838],[536457600000,0.411068129786058],[539136000000,0.408936606931397],[541555200000,0.408699771058656],[544233600000,0.383437277966369],[546825600000,0.385963527275598],[549504000000,0.37206915607484],[552096000000,0.361806268256099],[554774400000,0.361253651219705],[557452800000,0.348701349964475],[560044800000,0.358569511328649],[562723200000,0.343412015473277],[565315200000,0.335596431672851],[567993600000,0.336938501618378],[570672000000,0.335043814636457],[573177600000,0.330859714218047],[575856000000,0.309149759216863],[578448000000,0.323202020999447],[581126400000,0.304807768216626],[583718400000,0.309465540380516],[586396800000,0.328254519617905],[589075200000,0.309386595089603],[591667200000,0.306544564616721],[594345600000,0.304097260598405],[596937600000,0.302597300071051],[599616000000,0.315544327780848],[602294400000,0.290044998815821],[604713600000,0.277887424015157],[607392000000,0.298650035525381],[609984000000,0.291308123470435],[612662400000,0.307255072234941],[615254400000,0.300781558380043],[617932800000,0.302044683034657],[620611200000,0.308281361016815],[623203200000,0.311439172653351],[625881600000,0.318938975290124],[628473600000,0.314360148417147],[631152000000,0.321070498144786],[633830400000,0.313097023762533],[636249600000,0.308912923344123],[638928000000,0.324623036235889],[641520000000,0.320281045235652],[644198400000,0.308281361016815],[646790400000,0.334491197600063],[649468800000,0.355490644983027],[652147200000,0.369700797347438],[654739200000,0.376884818820557],[657417600000,0.400963132549143],[660009600000,0.411778637404279],[662688000000,0.420778400568406],[665366400000,0.440514723296755],[667785600000,0.465856161679956],[670464000000,0.454251203915686],[673056000000,0.477697955316965],[675734400000,0.474224362516776],[678326400000,0.465856161679956],[681004800000,0.472171784953028],[683683200000,0.476592721244178],[686275200000,0.486066156153785],[688953600000,0.493092287045078],[691545600000,0.514170679718955],[694224000000,0.520881029446594],[696902400000,0.534380674192784],[699408000000,0.534854345938265],[702086400000,0.531301807847162],[704678400000,0.55727480855767],[707356800000,0.580642614668035],[709948800000,0.56564300939449],[712627200000,0.560669456066946],[715305600000,0.560195784321465],[717897600000,0.529959737901634],[720576000000,0.543143601484172],[723168000000,0.542512039156864],[725846400000,0.524196731664956],[728524800000,0.512986500355254],[730944000000,0.502960448409252],[733622400000,0.507223494118576],[736214400000,0.510302360464198],[738892800000,0.508091892318623],[741484800000,0.493013341754164],[744163200000,0.479829478171627],[746841600000,0.475961158916871],[749433600000,0.478803189389753],[752112000000,0.462382568879766],[754704000000,0.457251124970395],[757382400000,0.469329754480145],[760060800000,0.465619325807216],[762480000000,0.456698507934002],[765158400000,0.44572511249704],[767750400000,0.412883871477066],[770428800000,0.413831214968027],[773020800000,0.415331175495382],[775699200000,0.414304886713508],[778377600000,0.398594773821742],[780969600000,0.390542354148575],[783648000000,0.370253414383832],[786240000000,0.358806347201389],[788918400000,0.370253414383832],[791596800000,0.355411699692113],[794016000000,0.352727559801058],[796694400000,0.391568642930449],[799286400000,0.374595405384069],[801964800000,0.374358569511329],[804556800000,0.382253098602668],[807235200000,0.378858451093392],[809913600000,0.378384779347912],[812505600000,0.366542985710902],[815184000000,0.374279624220415],[817776000000,0.374042788347675],[820454400000,0.379411068129786],[823132800000,0.365358806347201],[825638400000,0.365753532801768],[828316800000,0.373411226020368],[830908800000,0.374042788347675],[833587200000,0.348148732928081],[836179200000,0.367253493329123],[838857600000,0.331333385963527],[841536000000,0.338991079182127],[844128000000,0.343096234309623],[846806400000,0.35928001894687],[849398400000,0.360622088892398],[852076800000,0.353122286255625],[854755200000,0.348701349964475],[857174400000,0.340648930291308],[859852800000,0.330622878345307],[862444800000,0.313412804926186],[865123200000,0.324780926817715],[867715200000,0.313412804926186],[870393600000,0.309702376253256],[873072000000,0.3134917502171],[875664000000,0.297544801452593],[878342400000,0.286018788979237],[880934400000,0.299281597852688],[883612800000,0.290755506434041],[886291200000,0.285860898397411],[888710400000,0.295018552143365],[891388800000,0.257045867214021],[893980800000,0.265414068050841],[896659200000,0.278440041051551],[899251200000,0.282150469724481],[901929600000,0.275834846451409],[904608000000,0.28538722665193],[907200000000,0.283808320833662],[909878400000,0.269598168469251],[912470400000,0.26422988868714],[915148800000,0.25980895239599],[917827200000,0.270466566669298],[920246400000,0.244572511249704],[922924800000,0.262019420541565],[925516800000,0.245598800031578],[928195200000,0.257835320123155],[930787200000,0.263677271650746],[933465600000,0.248914502249941],[936144000000,0.254993289650272],[938736000000,0.244177784795137],[941414400000,0.239283176758506],[944006400000,0.234309623430962],[946684800000,0.238651614431199],[949363200000,0.250493408068209],[951868800000,0.240625246704034],[954547200000,0.220731033393858],[957139200000,0.242598878976869],[959817600000,0.234151732849136],[962409600000,0.241730480776822],[965088000000,0.250098681613642],[967766400000,0.232099155285387],[970358400000,0.224915133812268],[973036800000,0.233204389358175],[975628800000,0.232809662903608],[978307200000,0.263519381068919],[980985600000,0.268729770269203],[983404800000,0.2728349253967],[986083200000,0.283097813215442],[988675200000,0.279545275124339],[991353600000,0.299913160179995],[993945600000,0.307728743980422],[996624000000,0.343964632509671],[999302400000,0.35185916160101],[1001894400000,0.395436962185206],[1004572800000,0.419831057077445],[1007164800000,0.439962106260362],[1009843200000,0.433962264150943],[1012521600000,0.436567458751085],[1014940800000,0.443593589642378],[1017619200000,0.46688245046183],[1020211200000,0.451093392279151],[1022889600000,0.45061972053367],[1025481600000,0.45038288466093],[1028160000000,0.443593589642378],[1030838400000,0.439409489223968],[1033430400000,0.443830425515118],[1036108800000,0.460645772479672],[1038700800000,0.470119207389279],[1041379200000,0.460645772479672],[1044057600000,0.468382410989184],[1046476800000,0.466014052261783],[1049155200000,0.486066156153785],[1051747200000,0.495144864608826],[1054425600000,0.519538959501066],[1057017600000,0.49940791031815],[1059696000000,0.490329201863109],[1062374400000,0.492302834135944],[1064966400000,0.477382174153312],[1067644800000,0.465066708770822],[1070236800000,0.444619878424252],[1072915200000,0.448803978842662],[1075593600000,0.432778084787242],[1078099200000,0.458356359043183],[1080777600000,0.433014920659983],[1083369600000,0.436330622878345],[1086048000000,0.442172574405937],[1088640000000,0.430330780768927],[1091318400000,0.418804768295571],[1093996800000,0.413831214968027],[1096588800000,0.424409883950422],[1099267200000,0.414225941422594],[1101859200000,0.414383832004421],[1104537600000,0.402542038367411],[1107216000000,0.418015315386437],[1109635200000,0.398831609694482],[1112313600000,0.393700165785111],[1114905600000,0.39204231467593],[1117584000000,0.382016262729928],[1120176000000,0.372700718402147],[1122854400000,0.36788505565643],[1125532800000,0.384305676166417],[1128124800000,0.376411147075077],[1130803200000,0.385331964948291],[1133395200000,0.362674666456146],[1136073600000,0.345701428909766],[1138752000000,0.355174863819373],[1141171200000,0.346332991237073],[1143849600000,0.350122365200916],[1146441600000,0.33907002447304],[1149120000000,0.340727875582222],[1151712000000,0.354464356201153],[1154390400000,0.347832951764427],[1157068800000,0.328570300781558],[1159660800000,0.319096865871951],[1162339200000,0.330543933054393],[1164931200000,0.32185995105392],[1167609600000,0.349806584037262],[1170288000000,0.33488592405463],[1172707200000,0.319412647035604],[1175385600000,0.328807136654299],[1177977600000,0.322175732217573],[1180656000000,0.338991079182127],[1183248000000,0.352411778637404],[1185926400000,0.345938264782506],[1188604800000,0.354069629746586],[1191196800000,0.359358964237783],[1193875200000,0.359595800110523],[1196467200000,0.391568642930449],[1199145600000,0.394726454566985],[1201824000000,0.379884739875266],[1204329600000,0.40554195942212],[1207008000000,0.390937080603142],[1209600000000,0.450777611115497],[1212278400000,0.464987763479908],[1214870400000,0.493565958790558],[1217548800000,0.53311754953817],[1220227200000,0.53753848582932],[1222819200000,0.583326754559091],[1225497600000,0.619957369542907],[1228089600000,0.679008447146128],[1230768000000,0.73995421173127],[1233446400000,0.806268256098524],[1235865600000,0.847951369700797],[1238544000000,0.881661008920818],[1241136000000,0.932659666850872],[1243814400000,0.949080287360859],[1246406400000,0.940712086524039],[1249084800000,0.957527433488592],[1251763200000,0.972921765216705],[1254355200000,1],[1257033600000,0.989500276308518],[1259625600000,0.979947896107997],[1262304000000,0.975842740980501],[1264982400000,0.981132075471698],[1267401600000,0.98815820636299],[1270080000000,0.997868477145338],[1272672000000,0.960290518670561],[1275350400000,0.930686034578037],[1277942400000,0.933685955632746],[1280620800000,0.944422515196969],[1283299200000,0.938975290123944],[1285891200000,0.9340017367964],[1288569600000,0.978605826162469],[1291161600000,0.920738927922949],[1293840000000,0.894292255466961],[1296518400000,0.879055814320676],[1298937600000,0.872503355174864],[1301616000000,0.889871319175811],[1304208000000,0.881818899502645],[1306886400000,0.890266045630378],[1309478400000,0.874555932738612],[1312156800000,0.878897923738849],[1314835200000,0.889160811557591],[1317427200000,0.861214178574248],[1320105600000,0.838162153627536],[1322697600000,0.821662587826636],[1325376000000,0.798294781716271],[1328054400000,0.799557906370885],[1330560000000,0.791663377279545],[1333238400000,0.786374042788348],[1335830400000,0.787479276861135],[1338508800000,0.790005526170364],[1341100800000,0.787163495697482],[1343779200000,0.772558616878503],[1346457600000,0.744454093313334],[1349049600000,0.745164600931554],[1351728000000,0.73577011131286],[1354320000000,0.758901081550486],[1356998400000,0.772558616878503],[1359676800000,0.731428120312623],[1362096000000,0.710823399384227],[1364774400000,0.716428515039078],[1367366400000,0.708060314202258],[1370044800000,0.715718007420857],[1372636800000,0.682876766400884],[1375315200000,0.678455830109734],[1377993600000,0.677745322491513],[1380585600000,0.667166653509118],[1383264000000,0.639614746980343],[1385856000000,0.609378700560512],[1388534400000,0.593431751796005],[1391212800000,0.605036709560275],[1393632000000,0.60748401357859],[1396310400000,0.553959106339307],[1398902400000,0.56635351701271],[1401580800000,0.534854345938265],[1404172800000,0.546538248993447],[1406851200000,0.545827741375227],[1409529600000,0.519223178337412],[1412121600000,0.497750059208968],[1414800000000,0.505644588300308],[1417392000000,0.476197994789611],[1420070400000,0.490881818899503],[1422748800000,0.467750848661877],[1425168000000,0.459382647825057],[1427846400000,0.461119444225152]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}},\"title\":{\"text\":\"Rescaled to [0,1]\"}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]} # Format tick labels temperature <- data.frame( month = head(month.name), tp = c(4, -2, 2, 7, 11, 14) ) apex(temperature, aes(month, tp), \"line\") %>% ax_yaxis( labels = list( formatter = htmlwidgets::JS(\"function(value) {return value + '\\u00b0C';}\") ) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"tp\",\"type\":\"line\",\"data\":[{\"x\":\"January\",\"y\":4},{\"x\":\"February\",\"y\":-2},{\"x\":\"March\",\"y\":2},{\"x\":\"April\",\"y\":7},{\"x\":\"May\",\"y\":11},{\"x\":\"June\",\"y\":14}]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"},\"formatter\":\"function(value) {return value + '°C';}\"}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"April\",\"max\":\"May\"},\"type\":\"line\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_yaxis2.html","id":null,"dir":"Reference","previous_headings":"","what":"Secondary Y-axis options — ax_yaxis2","title":"Secondary Y-axis options — ax_yaxis2","text":"Secondary Y-axis options","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_yaxis2.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Secondary Y-axis options — ax_yaxis2","text":"","code":"ax_yaxis2(ax, ...)"},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_yaxis2.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Secondary Y-axis options — ax_yaxis2","text":"ax apexchart() htmlwidget object. ... See arguments ax_yaxis.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_yaxis2.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Secondary Y-axis options — ax_yaxis2","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/ax_yaxis2.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Secondary Y-axis options — ax_yaxis2","text":"","code":"library(apexcharter) data(\"economics_long\", package = \"ggplot2\") eco <- economics_long %>% subset(variable %in% c(\"pce\", \"pop\")) %>% transform(value = round(value)) # add second y-axis apex(eco, aes(x = date, y = value, color = variable), type = \"line\") %>% ax_yaxis(title = list(text = \"Pce\")) %>% ax_yaxis2(opposite = TRUE, title = list(text = \"Pop\")) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"pce\",\"type\":\"line\",\"data\":[[-79056000000,507],[-76377600000,510],[-73699200000,516],[-71107200000,512],[-68428800000,517],[-65836800000,525],[-63158400000,531],[-60480000000,534],[-57974400000,544],[-55296000000,544],[-52704000000,550],[-50025600000,556],[-47433600000,563],[-44755200000,567],[-42076800000,568],[-39484800000,572],[-36806400000,577],[-34214400000,576],[-31536000000,584],[-28857600000,589],[-26438400000,589],[-23760000000,594],[-21168000000,600],[-18489600000,601],[-15897600000,603],[-13219200000,610],[-10540800000,613],[-7948800000,618],[-5270400000,620],[-2678400000,623],[0,629],[2678400000,634],[5097600000,632],[7776000000,636],[10368000000,642],[13046400000,646],[15638400000,648],[18316800000,653],[20995200000,659],[23587200000,658],[26265600000,657],[28857600000,666],[31536000000,676],[34214400000,679],[36633600000,682],[39312000000,689],[41904000000,691],[44582400000,700],[47174400000,699],[49852800000,705],[52531200000,713],[55123200000,716],[57801600000,721],[60393600000,728],[63072000000,732],[65750400000,736],[68256000000,749],[70934400000,752],[73526400000,758],[76204800000,762],[78796800000,770],[81475200000,776],[84153600000,781],[86745600000,795],[89424000000,800],[92016000000,806],[94694400000,816],[97372800000,826],[99792000000,833],[102470400000,836],[105062400000,842],[107740800000,844],[110332800000,854],[113011200000,853],[115689600000,869],[118281600000,868],[120960000000,877],[123552000000,877],[126230400000,884],[128908800000,890],[131328000000,901],[134006400000,911],[136598400000,922],[139276800000,928],[141868800000,938],[144547200000,955],[147225600000,955],[149817600000,959],[152496000000,956],[155088000000,962],[157766400000,976],[160444800000,989],[162864000000,991],[165542400000,995],[168134400000,1019],[170812800000,1027],[173404800000,1040],[176083200000,1047],[178761600000,1055],[181353600000,1061],[184032000000,1076],[186624000000,1092],[189302400000,1107],[191980800000,1108],[194486400000,1115],[197164800000,1125],[199756800000,1123],[202435200000,1140],[205027200000,1150],[207705600000,1158],[210384000000,1169],[212976000000,1177],[215654400000,1189],[218246400000,1212],[220924800000,1215],[223603200000,1231],[226022400000,1238],[228700800000,1247],[231292800000,1257],[233971200000,1264],[236563200000,1280],[239241600000,1286],[241920000000,1294],[244512000000,1311],[247190400000,1327],[249782400000,1336],[252460800000,1330],[255139200000,1355],[257558400000,1378],[260236800000,1396],[262828800000,1412],[265507200000,1426],[268099200000,1427],[270777600000,1447],[273456000000,1453],[276048000000,1467],[278726400000,1481],[281318400000,1496],[283996800000,1502],[286675200000,1518],[289094400000,1531],[291772800000,1538],[294364800000,1559],[297043200000,1576],[299635200000,1586],[302313600000,1616],[304992000000,1634],[307584000000,1642],[310262400000,1657],[312854400000,1666],[315532800000,1697],[318211200000,1701],[320716800000,1708],[323395200000,1695],[325987200000,1700],[328665600000,1719],[331257600000,1747],[333936000000,1764],[336614400000,1780],[339206400000,1817],[341884800000,1827],[344476800000,1852],[347155200000,1870],[349833600000,1884],[352252800000,1903],[354931200000,1904],[357523200000,1914],[360201600000,1934],[362793600000,1942],[365472000000,1967],[368150400000,1966],[370742400000,1964],[373420800000,1971],[376012800000,1989],[378691200000,1997],[381369600000,2021],[383788800000,2024],[386467200000,2026],[389059200000,2044],[391737600000,2048],[394329600000,2072],[397008000000,2080],[399686400000,2105],[402278400000,2126],[404956800000,2149],[407548800000,2162],[410227200000,2174],[412905600000,2177],[415324800000,2203],[418003200000,2226],[420595200000,2246],[423273600000,2276],[425865600000,2304],[428544000000,2320],[431222400000,2335],[433814400000,2358],[436492800000,2366],[439084800000,2394],[441763200000,2419],[444441600000,2404],[446947200000,2432],[449625600000,2458],[452217600000,2474],[454896000000,2496],[457488000000,2495],[460166400000,2512],[462844800000,2534],[465436800000,2531],[468115200000,2571],[470707200000,2583],[473385600000,2619],[476064000000,2641],[478483200000,2648],[481161600000,2660],[483753600000,2696],[486432000000,2689],[489024000000,2716],[491702400000,2752],[494380800000,2795],[496972800000,2756],[499651200000,2771],[502243200000,2811],[504921600000,2827],[507600000000,2820],[510019200000,2824],[512697600000,2835],[515289600000,2858],[517968000000,2862],[520560000000,2881],[523238400000,2899],[525916800000,2972],[528508800000,2933],[531187200000,2928],[533779200000,2997],[536457600000,2936],[539136000000,3002],[541555200000,3013],[544233600000,3039],[546825600000,3048],[549504000000,3073],[552096000000,3095],[554774400000,3131],[557452800000,3126],[560044800000,3134],[562723200000,3144],[565315200000,3174],[567993600000,3214],[570672000000,3221],[573177600000,3260],[575856000000,3263],[578448000000,3294],[581126400000,3318],[583718400000,3343],[586396800000,3368],[589075200000,3375],[591667200000,3414],[594345600000,3430],[596937600000,3460],[599616000000,3484],[602294400000,3488],[604713600000,3499],[607392000000,3543],[609984000000,3552],[612662400000,3567],[615254400000,3586],[617932800000,3621],[620611200000,3622],[623203200000,3634],[625881600000,3643],[628473600000,3684],[631152000000,3731],[633830400000,3728],[636249600000,3755],[638928000000,3770],[641520000000,3776],[644198400000,3804],[646790400000,3822],[649468800000,3848],[652147200000,3870],[654739200000,3871],[657417600000,3872],[660009600000,3861],[662688000000,3841],[665366400000,3867],[667785600000,3913],[670464000000,3907],[673056000000,3933],[675734400000,3940],[678326400000,3966],[681004800000,3969],[683683200000,3985],[686275200000,3976],[688953600000,4004],[691545600000,4020],[694224000000,4085],[696902400000,4100],[699408000000,4117],[702086400000,4132],[704678400000,4158],[707356800000,4177],[709948800000,4205],[712627200000,4221],[715305600000,4255],[717897600000,4285],[720576000000,4300],[723168000000,4336],[725846400000,4341],[728524800000,4355],[730944000000,4352],[733622400000,4393],[736214400000,4422],[738892800000,4440],[741484800000,4469],[744163200000,4481],[746841600000,4512],[749433600000,4533],[752112000000,4554],[754704000000,4571],[757382400000,4585],[760060800000,4633],[762480000000,4646],[765158400000,4671],[767750400000,4670],[770428800000,4709],[773020800000,4721],[775699200000,4763],[778377600000,4775],[780969600000,4813],[783648000000,4826],[786240000000,4842],[788918400000,4851],[791596800000,4851],[794016000000,4885],[796694400000,4890],[799286400000,4933],[801964800000,4978],[804556800000,4970],[807235200000,5005],[809913600000,5020],[812505600000,5014],[815184000000,5056],[817776000000,5098],[820454400000,5086],[823132800000,5133],[825638400000,5173],[828316800000,5208],[830908800000,5224],[833587200000,5230],[836179200000,5252],[838857600000,5275],[841536000000,5297],[844128000000,5328],[846806400000,5351],[849398400000,5379],[852076800000,5411],[854755200000,5434],[857174400000,5454],[859852800000,5459],[862444800000,5460],[865123200000,5494],[867715200000,5549],[870393600000,5587],[873072000000,5602],[875664000000,5638],[878342400000,5661],[880934400000,5692],[883612800000,5690],[886291200000,5724],[888710400000,5750],[891388800000,5788],[893980800000,5838],[896659200000,5872],[899251200000,5890],[901929600000,5925],[904608000000,5966],[907200000000,5999],[909878400000,6015],[912470400000,6070],[915148800000,6073],[917827200000,6102],[920246400000,6133],[922924800000,6196],[925516800000,6226],[928195200000,6254],[930787200000,6282],[933465600000,6326],[936144000000,6379],[938736000000,6402],[941414400000,6438],[944006400000,6539],[946684800000,6535],[949363200000,6620],[951868800000,6686],[954547200000,6671],[957139200000,6708],[959817600000,6744],[962409600000,6764],[965088000000,6799],[967766400000,6883],[970358400000,6888],[973036800000,6902],[975628800000,6946],[978307200000,6977],[980985600000,6996],[983404800000,6988],[986083200000,7001],[988675200000,7047],[991353600000,7061],[993945600000,7072],[996624000000,7109],[999302400000,7013],[1001894400000,7208],[1004572800000,7168],[1007164800000,7148],[1009843200000,7174],[1012521600000,7218],[1014940800000,7237],[1017619200000,7305],[1020211200000,7283],[1022889600000,7318],[1025481600000,7380],[1028160000000,7402],[1030838400000,7391],[1033430400000,7431],[1036108800000,7460],[1038700800000,7513],[1041379200000,7533],[1044057600000,7536],[1046476800000,7598],[1049155200000,7621],[1051747200000,7628],[1054425600000,7679],[1057017600000,7738],[1059696000000,7834],[1062374400000,7835],[1064966400000,7846],[1067644800000,7900],[1070236800000,7929],[1072915200000,7987],[1075593600000,8020],[1078099200000,8076],[1080777600000,8089],[1083369600000,8163],[1086048000000,8147],[1088640000000,8219],[1091318400000,8253],[1093996800000,8321],[1096588800000,8375],[1099267200000,8421],[1101859200000,8482],[1104537600000,8470],[1107216000000,8529],[1109635200000,8570],[1112313600000,8646],[1114905600000,8644],[1117584000000,8725],[1120176000000,8830],[1122854400000,8832],[1125532800000,8886],[1128124800000,8927],[1130803200000,8938],[1133395200000,8970],[1136073600000,9060],[1138752000000,9090],[1141171200000,9122],[1143849600000,9175],[1146441600000,9215],[1149120000000,9241],[1151712000000,9323],[1154390400000,9322],[1157068800000,9355],[1159660800000,9373],[1162339200000,9380],[1164931200000,9469],[1167609600000,9516],[1170288000000,9547],[1172707200000,9585],[1175385600000,9616],[1177977600000,9651],[1180656000000,9667],[1183248000000,9710],[1185926400000,9754],[1188604800000,9798],[1191196800000,9827],[1193875200000,9898],[1196467200000,9908],[1199145600000,9930],[1201824000000,9913],[1204329600000,9959],[1207008000000,9997],[1209600000000,10054],[1212278400000,10108],[1214870400000,10105],[1217548800000,10095],[1220227200000,10044],[1222819200000,9960],[1225497600000,9821],[1228089600000,9731],[1230768000000,9784],[1233446400000,9766],[1235865600000,9718],[1238544000000,9725],[1241136000000,9749],[1243814400000,9807],[1246406400000,9842],[1249084800000,9961],[1251763200000,9883],[1254355200000,9932],[1257033600000,9940],[1259625600000,9999],[1262304000000,10002],[1264982400000,10031],[1267401600000,10089],[1270080000000,10113],[1272672000000,10131],[1275350400000,10151],[1277942400000,10185],[1280620800000,10228],[1283299200000,10249],[1285891200000,10305],[1288569600000,10355],[1291161600000,10392],[1293840000000,10436],[1296518400000,10470],[1298937600000,10550],[1301616000000,10588],[1304208000000,10612],[1306886400000,10637],[1309478400000,10678],[1312156800000,10701],[1314835200000,10738],[1317427200000,10753],[1320105600000,10760],[1322697600000,10772],[1325376000000,10862],[1328054400000,10954],[1330560000000,10952],[1333238400000,10980],[1335830400000,10969],[1338508800000,10946],[1341100800000,10977],[1343779200000,11004],[1346457600000,11062],[1349049600000,11100],[1351728000000,11137],[1354320000000,11140],[1356998400000,11203],[1359676800000,11240],[1362096000000,11227],[1364774400000,11205],[1367366400000,11245],[1370044800000,11269],[1372636800000,11297],[1375315200000,11329],[1377993600000,11367],[1380585600000,11420],[1383264000000,11488],[1385856000000,11518],[1388534400000,11512],[1391212800000,11566],[1393632000000,11643],[1396310400000,11703],[1398902400000,11748],[1401580800000,11817],[1404172800000,11860],[1406851200000,11944],[1409529600000,11957],[1412121600000,12023],[1414800000000,12051],[1417392000000,12062],[1420070400000,12046],[1422748800000,12082],[1425168000000,12158],[1427846400000,12194]]},{\"name\":\"pop\",\"type\":\"line\",\"data\":[[-79056000000,198712],[-76377600000,198911],[-73699200000,199113],[-71107200000,199311],[-68428800000,199498],[-65836800000,199657],[-63158400000,199808],[-60480000000,199920],[-57974400000,200056],[-55296000000,200208],[-52704000000,200361],[-50025600000,200536],[-47433600000,200706],[-44755200000,200898],[-42076800000,201095],[-39484800000,201290],[-36806400000,201466],[-34214400000,201621],[-31536000000,201760],[-28857600000,201881],[-26438400000,202023],[-23760000000,202161],[-21168000000,202331],[-18489600000,202507],[-15897600000,202677],[-13219200000,202877],[-10540800000,203090],[-7948800000,203302],[-5270400000,203500],[-2678400000,203675],[0,203849],[2678400000,204008],[5097600000,204156],[7776000000,204401],[10368000000,204607],[13046400000,204830],[15638400000,205052],[18316800000,205295],[20995200000,205540],[23587200000,205788],[26265600000,206024],[28857600000,206238],[31536000000,206466],[34214400000,206668],[36633600000,206855],[39312000000,207065],[41904000000,207260],[44582400000,207462],[47174400000,207661],[49852800000,207881],[52531200000,208114],[55123200000,208345],[57801600000,208555],[60393600000,208740],[63072000000,208917],[65750400000,209061],[68256000000,209212],[70934400000,209386],[73526400000,209545],[76204800000,209725],[78796800000,209896],[81475200000,210075],[84153600000,210278],[86745600000,210479],[89424000000,210656],[92016000000,210821],[94694400000,210985],[97372800000,211120],[99792000000,211254],[102470400000,211420],[105062400000,211577],[107740800000,211746],[110332800000,211909],[113011200000,212092],[115689600000,212289],[118281600000,212475],[120960000000,212634],[123552000000,212785],[126230400000,212932],[128908800000,213074],[131328000000,213211],[134006400000,213361],[136598400000,213513],[139276800000,213686],[141868800000,213854],[144547200000,214042],[147225600000,214246],[149817600000,214451],[152496000000,214625],[155088000000,214782],[157766400000,214931],[160444800000,215065],[162864000000,215198],[165542400000,215353],[168134400000,215523],[170812800000,215768],[173404800000,215973],[176083200000,216195],[178761600000,216393],[181353600000,216587],[184032000000,216771],[186624000000,216931],[189302400000,217095],[191980800000,217249],[194486400000,217381],[197164800000,217528],[199756800000,217685],[202435200000,217861],[205027200000,218035],[207705600000,218233],[210384000000,218440],[212976000000,218644],[215654400000,218834],[218246400000,219006],[220924800000,219179],[223603200000,219344],[226022400000,219504],[228700800000,219684],[231292800000,219859],[233971200000,220046],[236563200000,220239],[239241600000,220458],[241920000000,220688],[244512000000,220904],[247190400000,221109],[249782400000,221303],[252460800000,221477],[255139200000,221629],[257558400000,221792],[260236800000,221991],[262828800000,222176],[265507200000,222379],[268099200000,222585],[270777600000,222805],[273456000000,223053],[276048000000,223271],[278726400000,223477],[281318400000,223670],[283996800000,223865],[286675200000,224053],[289094400000,224235],[291772800000,224438],[294364800000,224632],[297043200000,224843],[299635200000,225055],[302313600000,225295],[304992000000,225547],[307584000000,225801],[310262400000,226027],[312854400000,226243],[315532800000,226451],[318211200000,226656],[320716800000,226849],[323395200000,227061],[325987200000,227251],[328665600000,227522],[331257600000,227726],[333936000000,227953],[336614400000,228186],[339206400000,228417],[341884800000,228612],[344476800000,228779],[347155200000,228937],[349833600000,229071],[352252800000,229224],[354931200000,229403],[357523200000,229575],[360201600000,229761],[362793600000,229966],[365472000000,230187],[368150400000,230412],[370742400000,230641],[373420800000,230822],[376012800000,230989],[378691200000,231157],[381369600000,231313],[383788800000,231470],[386467200000,231645],[389059200000,231809],[391737600000,231992],[394329600000,232188],[397008000000,232392],[399686400000,232599],[402278400000,232816],[404956800000,232993],[407548800000,233160],[410227200000,233322],[412905600000,233473],[415324800000,233613],[418003200000,233781],[420595200000,233922],[423273600000,234118],[425865600000,234307],[428544000000,234501],[431222400000,234701],[433814400000,234907],[436492800000,235078],[439084800000,235235],[441763200000,235385],[444441600000,235527],[446947200000,235675],[449625600000,235839],[452217600000,235993],[454896000000,236160],[457488000000,236348],[460166400000,236549],[462844800000,236760],[465436800000,236976],[468115200000,237159],[470707200000,237316],[473385600000,237468],[476064000000,237602],[478483200000,237732],[481161600000,237900],[483753600000,238074],[486432000000,238270],[489024000000,238466],[491702400000,238679],[494380800000,238898],[496972800000,239113],[499651200000,239307],[502243200000,239477],[504921600000,239638],[507600000000,239788],[510019200000,239928],[512697600000,240094],[515289600000,240271],[517968000000,240459],[520560000000,240651],[523238400000,240854],[525916800000,241068],[528508800000,241274],[531187200000,241467],[533779200000,241620],[536457600000,241784],[539136000000,241930],[541555200000,242079],[544233600000,242252],[546825600000,242423],[549504000000,242608],[552096000000,242804],[554774400000,243012],[557452800000,243223],[560044800000,243446],[562723200000,243639],[565315200000,243809],[567993600000,243981],[570672000000,244131],[573177600000,244279],[575856000000,244445],[578448000000,244610],[581126400000,244806],[583718400000,245021],[586396800000,245240],[589075200000,245464],[591667200000,245693],[594345600000,245884],[596937600000,246056],[599616000000,246224],[602294400000,246378],[604713600000,246530],[607392000000,246721],[609984000000,246906],[612662400000,247114],[615254400000,247342],[617932800000,247573],[620611200000,247816],[623203200000,248067],[625881600000,248281],[628473600000,248479],[631152000000,248659],[633830400000,248827],[636249600000,249012],[638928000000,249306],[641520000000,249565],[644198400000,249849],[646790400000,250132],[649468800000,250439],[652147200000,250751],[654739200000,251057],[657417600000,251346],[660009600000,251626],[662688000000,251889],[665366400000,252135],[667785600000,252372],[670464000000,252643],[673056000000,252913],[675734400000,253207],[678326400000,253493],[681004800000,253807],[683683200000,254126],[686275200000,254435],[688953600000,254718],[691545600000,254964],[694224000000,255214],[696902400000,255448],[699408000000,255703],[702086400000,255992],[704678400000,256285],[707356800000,256589],[709948800000,256894],[712627200000,257232],[715305600000,257548],[717897600000,257861],[720576000000,258147],[723168000000,258413],[725846400000,258679],[728524800000,258919],[730944000000,259152],[733622400000,259414],[736214400000,259680],[738892800000,259963],[741484800000,260255],[744163200000,260566],[746841600000,260867],[749433600000,261163],[752112000000,261425],[754704000000,261674],[757382400000,261919],[760060800000,262123],[762480000000,262352],[765158400000,262631],[767750400000,262877],[770428800000,263152],[773020800000,263436],[775699200000,263724],[778377600000,264017],[780969600000,264301],[783648000000,264559],[786240000000,264804],[788918400000,265044],[791596800000,265270],[794016000000,265495],[796694400000,265755],[799286400000,265998],[801964800000,266270],[804556800000,266557],[807235200000,266843],[809913600000,267152],[812505600000,267456],[815184000000,267715],[817776000000,267943],[820454400000,268151],[823132800000,268364],[825638400000,268595],[828316800000,268853],[830908800000,269108],[833587200000,269386],[836179200000,269667],[838857600000,269976],[841536000000,270284],[844128000000,270581],[846806400000,270878],[849398400000,271125],[852076800000,271360],[854755200000,271585],[857174400000,271821],[859852800000,272083],[862444800000,272342],[865123200000,272622],[867715200000,272912],[870393600000,273237],[873072000000,273553],[875664000000,273852],[878342400000,274126],[880934400000,274372],[883612800000,274626],[886291200000,274838],[888710400000,275047],[891388800000,275304],[893980800000,275564],[896659200000,275836],[899251200000,276115],[901929600000,276418],[904608000000,276714],[907200000000,277003],[909878400000,277277],[912470400000,277526],[915148800000,277790],[917827200000,277992],[920246400000,278198],[922924800000,278451],[925516800000,278717],[928195200000,279001],[930787200000,279295],[933465600000,279602],[936144000000,279903],[938736000000,280203],[941414400000,280471],[944006400000,280716],[946684800000,280976],[949363200000,281190],[951868800000,281409],[954547200000,281653],[957139200000,281877],[959817600000,282126],[962409600000,282385],[965088000000,282653],[967766400000,282932],[970358400000,283201],[973036800000,283453],[975628800000,283696],[978307200000,283920],[980985600000,284137],[983404800000,284350],[986083200000,284581],[988675200000,284810],[991353600000,285062],[993945600000,285309],[996624000000,285570],[999302400000,285843],[1001894400000,286098],[1004572800000,286341],[1007164800000,286570],[1009843200000,286788],[1012521600000,286994],[1014940800000,287190],[1017619200000,287397],[1020211200000,287623],[1022889600000,287864],[1025481600000,288105],[1028160000000,288360],[1030838400000,288618],[1033430400000,288870],[1036108800000,289106],[1038700800000,289313],[1041379200000,289518],[1044057600000,289714],[1046476800000,289911],[1049155200000,290125],[1051747200000,290346],[1054425600000,290584],[1057017600000,290820],[1059696000000,291072],[1062374400000,291321],[1064966400000,291574],[1067644800000,291807],[1070236800000,292008],[1072915200000,292192],[1075593600000,292368],[1078099200000,292561],[1080777600000,292779],[1083369600000,292997],[1086048000000,293223],[1088640000000,293463],[1091318400000,293719],[1093996800000,293971],[1096588800000,294230],[1099267200000,294466],[1101859200000,294694],[1104537600000,294914],[1107216000000,295105],[1109635200000,295287],[1112313600000,295490],[1114905600000,295704],[1117584000000,295936],[1120176000000,296186],[1122854400000,296440],[1125532800000,296707],[1128124800000,296972],[1130803200000,297207],[1133395200000,297431],[1136073600000,297647],[1138752000000,297854],[1141171200000,298060],[1143849600000,298281],[1146441600000,298496],[1149120000000,298739],[1151712000000,298996],[1154390400000,299263],[1157068800000,299554],[1159660800000,299835],[1162339200000,300094],[1164931200000,300340],[1167609600000,300574],[1170288000000,300802],[1172707200000,301021],[1175385600000,301254],[1177977600000,301483],[1180656000000,301739],[1183248000000,302004],[1185926400000,302267],[1188604800000,302546],[1191196800000,302807],[1193875200000,303054],[1196467200000,303287],[1199145600000,303506],[1201824000000,303711],[1204329600000,303907],[1207008000000,304117],[1209600000000,304323],[1212278400000,304556],[1214870400000,304798],[1217548800000,305045],[1220227200000,305309],[1222819200000,305554],[1225497600000,305786],[1228089600000,306004],[1230768000000,306208],[1233446400000,306402],[1235865600000,306588],[1238544000000,306787],[1241136000000,306984],[1243814400000,307206],[1246406400000,307439],[1249084800000,307685],[1251763200000,307946],[1254355200000,308189],[1257033600000,308418],[1259625600000,308633],[1262304000000,308833],[1264982400000,309027],[1267401600000,309212],[1270080000000,309191],[1272672000000,309369],[1275350400000,309549],[1277942400000,309746],[1280620800000,309958],[1283299200000,310176],[1285891200000,310400],[1288569600000,310596],[1291161600000,310782],[1293840000000,310961],[1296518400000,311113],[1298937600000,311265],[1301616000000,311436],[1304208000000,311607],[1306886400000,311791],[1309478400000,311997],[1312156800000,312205],[1314835200000,312429],[1317427200000,312644],[1320105600000,312830],[1322697600000,313010],[1325376000000,313183],[1328054400000,313339],[1330560000000,313499],[1333238400000,313667],[1335830400000,313831],[1338508800000,314018],[1341100800000,314211],[1343779200000,314422],[1346457600000,314647],[1349049600000,314854],[1351728000000,315054],[1354320000000,315233],[1356998400000,315390],[1359676800000,315520],[1362096000000,315662],[1364774400000,315818],[1367366400000,315984],[1370044800000,316171],[1372636800000,316359],[1375315200000,316580],[1377993600000,316806],[1380585600000,317022],[1383264000000,317228],[1385856000000,317412],[1388534400000,317594],[1391212800000,317754],[1393632000000,317917],[1396310400000,318089],[1398902400000,318270],[1401580800000,318464],[1404172800000,318662],[1406851200000,318894],[1409529600000,319125],[1412121600000,319354],[1414800000000,319564],[1417392000000,319746],[1420070400000,319929],[1422748800000,320075],[1425168000000,320231],[1427846400000,320402]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":[{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}},\"title\":{\"text\":\"Pce\"}},{\"opposite\":true,\"title\":{\"text\":\"Pop\"}}]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]} # Customize axis a bit more apex(eco, aes(x = date, y = value, color = variable), type = \"line\") %>% ax_yaxis( title = list(text = \"Pce\"), axisBorder = list( show = TRUE, color = \"#008FFB\" ), labels = list( style = list( colors = \"#008FFB\" ) ), tooltip = list( enabled = TRUE ) ) %>% ax_yaxis2( opposite = TRUE, min = 160000, forceNiceScale = TRUE, title = list(text = \"Pop\"), axisBorder = list( show = TRUE, color = \"#00E396\" ), labels = list( style = list( colors = \"#00E396\" ) ), tooltip = list( enabled = TRUE ) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"pce\",\"type\":\"line\",\"data\":[[-79056000000,507],[-76377600000,510],[-73699200000,516],[-71107200000,512],[-68428800000,517],[-65836800000,525],[-63158400000,531],[-60480000000,534],[-57974400000,544],[-55296000000,544],[-52704000000,550],[-50025600000,556],[-47433600000,563],[-44755200000,567],[-42076800000,568],[-39484800000,572],[-36806400000,577],[-34214400000,576],[-31536000000,584],[-28857600000,589],[-26438400000,589],[-23760000000,594],[-21168000000,600],[-18489600000,601],[-15897600000,603],[-13219200000,610],[-10540800000,613],[-7948800000,618],[-5270400000,620],[-2678400000,623],[0,629],[2678400000,634],[5097600000,632],[7776000000,636],[10368000000,642],[13046400000,646],[15638400000,648],[18316800000,653],[20995200000,659],[23587200000,658],[26265600000,657],[28857600000,666],[31536000000,676],[34214400000,679],[36633600000,682],[39312000000,689],[41904000000,691],[44582400000,700],[47174400000,699],[49852800000,705],[52531200000,713],[55123200000,716],[57801600000,721],[60393600000,728],[63072000000,732],[65750400000,736],[68256000000,749],[70934400000,752],[73526400000,758],[76204800000,762],[78796800000,770],[81475200000,776],[84153600000,781],[86745600000,795],[89424000000,800],[92016000000,806],[94694400000,816],[97372800000,826],[99792000000,833],[102470400000,836],[105062400000,842],[107740800000,844],[110332800000,854],[113011200000,853],[115689600000,869],[118281600000,868],[120960000000,877],[123552000000,877],[126230400000,884],[128908800000,890],[131328000000,901],[134006400000,911],[136598400000,922],[139276800000,928],[141868800000,938],[144547200000,955],[147225600000,955],[149817600000,959],[152496000000,956],[155088000000,962],[157766400000,976],[160444800000,989],[162864000000,991],[165542400000,995],[168134400000,1019],[170812800000,1027],[173404800000,1040],[176083200000,1047],[178761600000,1055],[181353600000,1061],[184032000000,1076],[186624000000,1092],[189302400000,1107],[191980800000,1108],[194486400000,1115],[197164800000,1125],[199756800000,1123],[202435200000,1140],[205027200000,1150],[207705600000,1158],[210384000000,1169],[212976000000,1177],[215654400000,1189],[218246400000,1212],[220924800000,1215],[223603200000,1231],[226022400000,1238],[228700800000,1247],[231292800000,1257],[233971200000,1264],[236563200000,1280],[239241600000,1286],[241920000000,1294],[244512000000,1311],[247190400000,1327],[249782400000,1336],[252460800000,1330],[255139200000,1355],[257558400000,1378],[260236800000,1396],[262828800000,1412],[265507200000,1426],[268099200000,1427],[270777600000,1447],[273456000000,1453],[276048000000,1467],[278726400000,1481],[281318400000,1496],[283996800000,1502],[286675200000,1518],[289094400000,1531],[291772800000,1538],[294364800000,1559],[297043200000,1576],[299635200000,1586],[302313600000,1616],[304992000000,1634],[307584000000,1642],[310262400000,1657],[312854400000,1666],[315532800000,1697],[318211200000,1701],[320716800000,1708],[323395200000,1695],[325987200000,1700],[328665600000,1719],[331257600000,1747],[333936000000,1764],[336614400000,1780],[339206400000,1817],[341884800000,1827],[344476800000,1852],[347155200000,1870],[349833600000,1884],[352252800000,1903],[354931200000,1904],[357523200000,1914],[360201600000,1934],[362793600000,1942],[365472000000,1967],[368150400000,1966],[370742400000,1964],[373420800000,1971],[376012800000,1989],[378691200000,1997],[381369600000,2021],[383788800000,2024],[386467200000,2026],[389059200000,2044],[391737600000,2048],[394329600000,2072],[397008000000,2080],[399686400000,2105],[402278400000,2126],[404956800000,2149],[407548800000,2162],[410227200000,2174],[412905600000,2177],[415324800000,2203],[418003200000,2226],[420595200000,2246],[423273600000,2276],[425865600000,2304],[428544000000,2320],[431222400000,2335],[433814400000,2358],[436492800000,2366],[439084800000,2394],[441763200000,2419],[444441600000,2404],[446947200000,2432],[449625600000,2458],[452217600000,2474],[454896000000,2496],[457488000000,2495],[460166400000,2512],[462844800000,2534],[465436800000,2531],[468115200000,2571],[470707200000,2583],[473385600000,2619],[476064000000,2641],[478483200000,2648],[481161600000,2660],[483753600000,2696],[486432000000,2689],[489024000000,2716],[491702400000,2752],[494380800000,2795],[496972800000,2756],[499651200000,2771],[502243200000,2811],[504921600000,2827],[507600000000,2820],[510019200000,2824],[512697600000,2835],[515289600000,2858],[517968000000,2862],[520560000000,2881],[523238400000,2899],[525916800000,2972],[528508800000,2933],[531187200000,2928],[533779200000,2997],[536457600000,2936],[539136000000,3002],[541555200000,3013],[544233600000,3039],[546825600000,3048],[549504000000,3073],[552096000000,3095],[554774400000,3131],[557452800000,3126],[560044800000,3134],[562723200000,3144],[565315200000,3174],[567993600000,3214],[570672000000,3221],[573177600000,3260],[575856000000,3263],[578448000000,3294],[581126400000,3318],[583718400000,3343],[586396800000,3368],[589075200000,3375],[591667200000,3414],[594345600000,3430],[596937600000,3460],[599616000000,3484],[602294400000,3488],[604713600000,3499],[607392000000,3543],[609984000000,3552],[612662400000,3567],[615254400000,3586],[617932800000,3621],[620611200000,3622],[623203200000,3634],[625881600000,3643],[628473600000,3684],[631152000000,3731],[633830400000,3728],[636249600000,3755],[638928000000,3770],[641520000000,3776],[644198400000,3804],[646790400000,3822],[649468800000,3848],[652147200000,3870],[654739200000,3871],[657417600000,3872],[660009600000,3861],[662688000000,3841],[665366400000,3867],[667785600000,3913],[670464000000,3907],[673056000000,3933],[675734400000,3940],[678326400000,3966],[681004800000,3969],[683683200000,3985],[686275200000,3976],[688953600000,4004],[691545600000,4020],[694224000000,4085],[696902400000,4100],[699408000000,4117],[702086400000,4132],[704678400000,4158],[707356800000,4177],[709948800000,4205],[712627200000,4221],[715305600000,4255],[717897600000,4285],[720576000000,4300],[723168000000,4336],[725846400000,4341],[728524800000,4355],[730944000000,4352],[733622400000,4393],[736214400000,4422],[738892800000,4440],[741484800000,4469],[744163200000,4481],[746841600000,4512],[749433600000,4533],[752112000000,4554],[754704000000,4571],[757382400000,4585],[760060800000,4633],[762480000000,4646],[765158400000,4671],[767750400000,4670],[770428800000,4709],[773020800000,4721],[775699200000,4763],[778377600000,4775],[780969600000,4813],[783648000000,4826],[786240000000,4842],[788918400000,4851],[791596800000,4851],[794016000000,4885],[796694400000,4890],[799286400000,4933],[801964800000,4978],[804556800000,4970],[807235200000,5005],[809913600000,5020],[812505600000,5014],[815184000000,5056],[817776000000,5098],[820454400000,5086],[823132800000,5133],[825638400000,5173],[828316800000,5208],[830908800000,5224],[833587200000,5230],[836179200000,5252],[838857600000,5275],[841536000000,5297],[844128000000,5328],[846806400000,5351],[849398400000,5379],[852076800000,5411],[854755200000,5434],[857174400000,5454],[859852800000,5459],[862444800000,5460],[865123200000,5494],[867715200000,5549],[870393600000,5587],[873072000000,5602],[875664000000,5638],[878342400000,5661],[880934400000,5692],[883612800000,5690],[886291200000,5724],[888710400000,5750],[891388800000,5788],[893980800000,5838],[896659200000,5872],[899251200000,5890],[901929600000,5925],[904608000000,5966],[907200000000,5999],[909878400000,6015],[912470400000,6070],[915148800000,6073],[917827200000,6102],[920246400000,6133],[922924800000,6196],[925516800000,6226],[928195200000,6254],[930787200000,6282],[933465600000,6326],[936144000000,6379],[938736000000,6402],[941414400000,6438],[944006400000,6539],[946684800000,6535],[949363200000,6620],[951868800000,6686],[954547200000,6671],[957139200000,6708],[959817600000,6744],[962409600000,6764],[965088000000,6799],[967766400000,6883],[970358400000,6888],[973036800000,6902],[975628800000,6946],[978307200000,6977],[980985600000,6996],[983404800000,6988],[986083200000,7001],[988675200000,7047],[991353600000,7061],[993945600000,7072],[996624000000,7109],[999302400000,7013],[1001894400000,7208],[1004572800000,7168],[1007164800000,7148],[1009843200000,7174],[1012521600000,7218],[1014940800000,7237],[1017619200000,7305],[1020211200000,7283],[1022889600000,7318],[1025481600000,7380],[1028160000000,7402],[1030838400000,7391],[1033430400000,7431],[1036108800000,7460],[1038700800000,7513],[1041379200000,7533],[1044057600000,7536],[1046476800000,7598],[1049155200000,7621],[1051747200000,7628],[1054425600000,7679],[1057017600000,7738],[1059696000000,7834],[1062374400000,7835],[1064966400000,7846],[1067644800000,7900],[1070236800000,7929],[1072915200000,7987],[1075593600000,8020],[1078099200000,8076],[1080777600000,8089],[1083369600000,8163],[1086048000000,8147],[1088640000000,8219],[1091318400000,8253],[1093996800000,8321],[1096588800000,8375],[1099267200000,8421],[1101859200000,8482],[1104537600000,8470],[1107216000000,8529],[1109635200000,8570],[1112313600000,8646],[1114905600000,8644],[1117584000000,8725],[1120176000000,8830],[1122854400000,8832],[1125532800000,8886],[1128124800000,8927],[1130803200000,8938],[1133395200000,8970],[1136073600000,9060],[1138752000000,9090],[1141171200000,9122],[1143849600000,9175],[1146441600000,9215],[1149120000000,9241],[1151712000000,9323],[1154390400000,9322],[1157068800000,9355],[1159660800000,9373],[1162339200000,9380],[1164931200000,9469],[1167609600000,9516],[1170288000000,9547],[1172707200000,9585],[1175385600000,9616],[1177977600000,9651],[1180656000000,9667],[1183248000000,9710],[1185926400000,9754],[1188604800000,9798],[1191196800000,9827],[1193875200000,9898],[1196467200000,9908],[1199145600000,9930],[1201824000000,9913],[1204329600000,9959],[1207008000000,9997],[1209600000000,10054],[1212278400000,10108],[1214870400000,10105],[1217548800000,10095],[1220227200000,10044],[1222819200000,9960],[1225497600000,9821],[1228089600000,9731],[1230768000000,9784],[1233446400000,9766],[1235865600000,9718],[1238544000000,9725],[1241136000000,9749],[1243814400000,9807],[1246406400000,9842],[1249084800000,9961],[1251763200000,9883],[1254355200000,9932],[1257033600000,9940],[1259625600000,9999],[1262304000000,10002],[1264982400000,10031],[1267401600000,10089],[1270080000000,10113],[1272672000000,10131],[1275350400000,10151],[1277942400000,10185],[1280620800000,10228],[1283299200000,10249],[1285891200000,10305],[1288569600000,10355],[1291161600000,10392],[1293840000000,10436],[1296518400000,10470],[1298937600000,10550],[1301616000000,10588],[1304208000000,10612],[1306886400000,10637],[1309478400000,10678],[1312156800000,10701],[1314835200000,10738],[1317427200000,10753],[1320105600000,10760],[1322697600000,10772],[1325376000000,10862],[1328054400000,10954],[1330560000000,10952],[1333238400000,10980],[1335830400000,10969],[1338508800000,10946],[1341100800000,10977],[1343779200000,11004],[1346457600000,11062],[1349049600000,11100],[1351728000000,11137],[1354320000000,11140],[1356998400000,11203],[1359676800000,11240],[1362096000000,11227],[1364774400000,11205],[1367366400000,11245],[1370044800000,11269],[1372636800000,11297],[1375315200000,11329],[1377993600000,11367],[1380585600000,11420],[1383264000000,11488],[1385856000000,11518],[1388534400000,11512],[1391212800000,11566],[1393632000000,11643],[1396310400000,11703],[1398902400000,11748],[1401580800000,11817],[1404172800000,11860],[1406851200000,11944],[1409529600000,11957],[1412121600000,12023],[1414800000000,12051],[1417392000000,12062],[1420070400000,12046],[1422748800000,12082],[1425168000000,12158],[1427846400000,12194]]},{\"name\":\"pop\",\"type\":\"line\",\"data\":[[-79056000000,198712],[-76377600000,198911],[-73699200000,199113],[-71107200000,199311],[-68428800000,199498],[-65836800000,199657],[-63158400000,199808],[-60480000000,199920],[-57974400000,200056],[-55296000000,200208],[-52704000000,200361],[-50025600000,200536],[-47433600000,200706],[-44755200000,200898],[-42076800000,201095],[-39484800000,201290],[-36806400000,201466],[-34214400000,201621],[-31536000000,201760],[-28857600000,201881],[-26438400000,202023],[-23760000000,202161],[-21168000000,202331],[-18489600000,202507],[-15897600000,202677],[-13219200000,202877],[-10540800000,203090],[-7948800000,203302],[-5270400000,203500],[-2678400000,203675],[0,203849],[2678400000,204008],[5097600000,204156],[7776000000,204401],[10368000000,204607],[13046400000,204830],[15638400000,205052],[18316800000,205295],[20995200000,205540],[23587200000,205788],[26265600000,206024],[28857600000,206238],[31536000000,206466],[34214400000,206668],[36633600000,206855],[39312000000,207065],[41904000000,207260],[44582400000,207462],[47174400000,207661],[49852800000,207881],[52531200000,208114],[55123200000,208345],[57801600000,208555],[60393600000,208740],[63072000000,208917],[65750400000,209061],[68256000000,209212],[70934400000,209386],[73526400000,209545],[76204800000,209725],[78796800000,209896],[81475200000,210075],[84153600000,210278],[86745600000,210479],[89424000000,210656],[92016000000,210821],[94694400000,210985],[97372800000,211120],[99792000000,211254],[102470400000,211420],[105062400000,211577],[107740800000,211746],[110332800000,211909],[113011200000,212092],[115689600000,212289],[118281600000,212475],[120960000000,212634],[123552000000,212785],[126230400000,212932],[128908800000,213074],[131328000000,213211],[134006400000,213361],[136598400000,213513],[139276800000,213686],[141868800000,213854],[144547200000,214042],[147225600000,214246],[149817600000,214451],[152496000000,214625],[155088000000,214782],[157766400000,214931],[160444800000,215065],[162864000000,215198],[165542400000,215353],[168134400000,215523],[170812800000,215768],[173404800000,215973],[176083200000,216195],[178761600000,216393],[181353600000,216587],[184032000000,216771],[186624000000,216931],[189302400000,217095],[191980800000,217249],[194486400000,217381],[197164800000,217528],[199756800000,217685],[202435200000,217861],[205027200000,218035],[207705600000,218233],[210384000000,218440],[212976000000,218644],[215654400000,218834],[218246400000,219006],[220924800000,219179],[223603200000,219344],[226022400000,219504],[228700800000,219684],[231292800000,219859],[233971200000,220046],[236563200000,220239],[239241600000,220458],[241920000000,220688],[244512000000,220904],[247190400000,221109],[249782400000,221303],[252460800000,221477],[255139200000,221629],[257558400000,221792],[260236800000,221991],[262828800000,222176],[265507200000,222379],[268099200000,222585],[270777600000,222805],[273456000000,223053],[276048000000,223271],[278726400000,223477],[281318400000,223670],[283996800000,223865],[286675200000,224053],[289094400000,224235],[291772800000,224438],[294364800000,224632],[297043200000,224843],[299635200000,225055],[302313600000,225295],[304992000000,225547],[307584000000,225801],[310262400000,226027],[312854400000,226243],[315532800000,226451],[318211200000,226656],[320716800000,226849],[323395200000,227061],[325987200000,227251],[328665600000,227522],[331257600000,227726],[333936000000,227953],[336614400000,228186],[339206400000,228417],[341884800000,228612],[344476800000,228779],[347155200000,228937],[349833600000,229071],[352252800000,229224],[354931200000,229403],[357523200000,229575],[360201600000,229761],[362793600000,229966],[365472000000,230187],[368150400000,230412],[370742400000,230641],[373420800000,230822],[376012800000,230989],[378691200000,231157],[381369600000,231313],[383788800000,231470],[386467200000,231645],[389059200000,231809],[391737600000,231992],[394329600000,232188],[397008000000,232392],[399686400000,232599],[402278400000,232816],[404956800000,232993],[407548800000,233160],[410227200000,233322],[412905600000,233473],[415324800000,233613],[418003200000,233781],[420595200000,233922],[423273600000,234118],[425865600000,234307],[428544000000,234501],[431222400000,234701],[433814400000,234907],[436492800000,235078],[439084800000,235235],[441763200000,235385],[444441600000,235527],[446947200000,235675],[449625600000,235839],[452217600000,235993],[454896000000,236160],[457488000000,236348],[460166400000,236549],[462844800000,236760],[465436800000,236976],[468115200000,237159],[470707200000,237316],[473385600000,237468],[476064000000,237602],[478483200000,237732],[481161600000,237900],[483753600000,238074],[486432000000,238270],[489024000000,238466],[491702400000,238679],[494380800000,238898],[496972800000,239113],[499651200000,239307],[502243200000,239477],[504921600000,239638],[507600000000,239788],[510019200000,239928],[512697600000,240094],[515289600000,240271],[517968000000,240459],[520560000000,240651],[523238400000,240854],[525916800000,241068],[528508800000,241274],[531187200000,241467],[533779200000,241620],[536457600000,241784],[539136000000,241930],[541555200000,242079],[544233600000,242252],[546825600000,242423],[549504000000,242608],[552096000000,242804],[554774400000,243012],[557452800000,243223],[560044800000,243446],[562723200000,243639],[565315200000,243809],[567993600000,243981],[570672000000,244131],[573177600000,244279],[575856000000,244445],[578448000000,244610],[581126400000,244806],[583718400000,245021],[586396800000,245240],[589075200000,245464],[591667200000,245693],[594345600000,245884],[596937600000,246056],[599616000000,246224],[602294400000,246378],[604713600000,246530],[607392000000,246721],[609984000000,246906],[612662400000,247114],[615254400000,247342],[617932800000,247573],[620611200000,247816],[623203200000,248067],[625881600000,248281],[628473600000,248479],[631152000000,248659],[633830400000,248827],[636249600000,249012],[638928000000,249306],[641520000000,249565],[644198400000,249849],[646790400000,250132],[649468800000,250439],[652147200000,250751],[654739200000,251057],[657417600000,251346],[660009600000,251626],[662688000000,251889],[665366400000,252135],[667785600000,252372],[670464000000,252643],[673056000000,252913],[675734400000,253207],[678326400000,253493],[681004800000,253807],[683683200000,254126],[686275200000,254435],[688953600000,254718],[691545600000,254964],[694224000000,255214],[696902400000,255448],[699408000000,255703],[702086400000,255992],[704678400000,256285],[707356800000,256589],[709948800000,256894],[712627200000,257232],[715305600000,257548],[717897600000,257861],[720576000000,258147],[723168000000,258413],[725846400000,258679],[728524800000,258919],[730944000000,259152],[733622400000,259414],[736214400000,259680],[738892800000,259963],[741484800000,260255],[744163200000,260566],[746841600000,260867],[749433600000,261163],[752112000000,261425],[754704000000,261674],[757382400000,261919],[760060800000,262123],[762480000000,262352],[765158400000,262631],[767750400000,262877],[770428800000,263152],[773020800000,263436],[775699200000,263724],[778377600000,264017],[780969600000,264301],[783648000000,264559],[786240000000,264804],[788918400000,265044],[791596800000,265270],[794016000000,265495],[796694400000,265755],[799286400000,265998],[801964800000,266270],[804556800000,266557],[807235200000,266843],[809913600000,267152],[812505600000,267456],[815184000000,267715],[817776000000,267943],[820454400000,268151],[823132800000,268364],[825638400000,268595],[828316800000,268853],[830908800000,269108],[833587200000,269386],[836179200000,269667],[838857600000,269976],[841536000000,270284],[844128000000,270581],[846806400000,270878],[849398400000,271125],[852076800000,271360],[854755200000,271585],[857174400000,271821],[859852800000,272083],[862444800000,272342],[865123200000,272622],[867715200000,272912],[870393600000,273237],[873072000000,273553],[875664000000,273852],[878342400000,274126],[880934400000,274372],[883612800000,274626],[886291200000,274838],[888710400000,275047],[891388800000,275304],[893980800000,275564],[896659200000,275836],[899251200000,276115],[901929600000,276418],[904608000000,276714],[907200000000,277003],[909878400000,277277],[912470400000,277526],[915148800000,277790],[917827200000,277992],[920246400000,278198],[922924800000,278451],[925516800000,278717],[928195200000,279001],[930787200000,279295],[933465600000,279602],[936144000000,279903],[938736000000,280203],[941414400000,280471],[944006400000,280716],[946684800000,280976],[949363200000,281190],[951868800000,281409],[954547200000,281653],[957139200000,281877],[959817600000,282126],[962409600000,282385],[965088000000,282653],[967766400000,282932],[970358400000,283201],[973036800000,283453],[975628800000,283696],[978307200000,283920],[980985600000,284137],[983404800000,284350],[986083200000,284581],[988675200000,284810],[991353600000,285062],[993945600000,285309],[996624000000,285570],[999302400000,285843],[1001894400000,286098],[1004572800000,286341],[1007164800000,286570],[1009843200000,286788],[1012521600000,286994],[1014940800000,287190],[1017619200000,287397],[1020211200000,287623],[1022889600000,287864],[1025481600000,288105],[1028160000000,288360],[1030838400000,288618],[1033430400000,288870],[1036108800000,289106],[1038700800000,289313],[1041379200000,289518],[1044057600000,289714],[1046476800000,289911],[1049155200000,290125],[1051747200000,290346],[1054425600000,290584],[1057017600000,290820],[1059696000000,291072],[1062374400000,291321],[1064966400000,291574],[1067644800000,291807],[1070236800000,292008],[1072915200000,292192],[1075593600000,292368],[1078099200000,292561],[1080777600000,292779],[1083369600000,292997],[1086048000000,293223],[1088640000000,293463],[1091318400000,293719],[1093996800000,293971],[1096588800000,294230],[1099267200000,294466],[1101859200000,294694],[1104537600000,294914],[1107216000000,295105],[1109635200000,295287],[1112313600000,295490],[1114905600000,295704],[1117584000000,295936],[1120176000000,296186],[1122854400000,296440],[1125532800000,296707],[1128124800000,296972],[1130803200000,297207],[1133395200000,297431],[1136073600000,297647],[1138752000000,297854],[1141171200000,298060],[1143849600000,298281],[1146441600000,298496],[1149120000000,298739],[1151712000000,298996],[1154390400000,299263],[1157068800000,299554],[1159660800000,299835],[1162339200000,300094],[1164931200000,300340],[1167609600000,300574],[1170288000000,300802],[1172707200000,301021],[1175385600000,301254],[1177977600000,301483],[1180656000000,301739],[1183248000000,302004],[1185926400000,302267],[1188604800000,302546],[1191196800000,302807],[1193875200000,303054],[1196467200000,303287],[1199145600000,303506],[1201824000000,303711],[1204329600000,303907],[1207008000000,304117],[1209600000000,304323],[1212278400000,304556],[1214870400000,304798],[1217548800000,305045],[1220227200000,305309],[1222819200000,305554],[1225497600000,305786],[1228089600000,306004],[1230768000000,306208],[1233446400000,306402],[1235865600000,306588],[1238544000000,306787],[1241136000000,306984],[1243814400000,307206],[1246406400000,307439],[1249084800000,307685],[1251763200000,307946],[1254355200000,308189],[1257033600000,308418],[1259625600000,308633],[1262304000000,308833],[1264982400000,309027],[1267401600000,309212],[1270080000000,309191],[1272672000000,309369],[1275350400000,309549],[1277942400000,309746],[1280620800000,309958],[1283299200000,310176],[1285891200000,310400],[1288569600000,310596],[1291161600000,310782],[1293840000000,310961],[1296518400000,311113],[1298937600000,311265],[1301616000000,311436],[1304208000000,311607],[1306886400000,311791],[1309478400000,311997],[1312156800000,312205],[1314835200000,312429],[1317427200000,312644],[1320105600000,312830],[1322697600000,313010],[1325376000000,313183],[1328054400000,313339],[1330560000000,313499],[1333238400000,313667],[1335830400000,313831],[1338508800000,314018],[1341100800000,314211],[1343779200000,314422],[1346457600000,314647],[1349049600000,314854],[1351728000000,315054],[1354320000000,315233],[1356998400000,315390],[1359676800000,315520],[1362096000000,315662],[1364774400000,315818],[1367366400000,315984],[1370044800000,316171],[1372636800000,316359],[1375315200000,316580],[1377993600000,316806],[1380585600000,317022],[1383264000000,317228],[1385856000000,317412],[1388534400000,317594],[1391212800000,317754],[1393632000000,317917],[1396310400000,318089],[1398902400000,318270],[1401580800000,318464],[1404172800000,318662],[1406851200000,318894],[1409529600000,319125],[1412121600000,319354],[1414800000000,319564],[1417392000000,319746],[1420070400000,319929],[1422748800000,320075],[1425168000000,320231],[1427846400000,320402]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":[{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#008FFB\"}},\"axisBorder\":{\"show\":true,\"color\":\"#008FFB\"},\"title\":{\"text\":\"Pce\"},\"tooltip\":{\"enabled\":true}},{\"opposite\":true,\"min\":160000,\"forceNiceScale\":true,\"title\":{\"text\":\"Pop\"},\"axisBorder\":{\"show\":true,\"color\":\"#00E396\"},\"labels\":{\"style\":{\"colors\":\"#00E396\"}},\"tooltip\":{\"enabled\":true}}]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/bar_opts.html","id":null,"dir":"Reference","previous_headings":"","what":"Bar options — bar_opts","title":"Bar options — bar_opts","text":"Use options ax_plotOptions.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/bar_opts.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Bar options — bar_opts","text":"","code":"bar_opts( horizontal = NULL, endingShape = NULL, columnWidth = NULL, barHeight = NULL, distributed = NULL, colors = NULL, dataLabels = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/bar_opts.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Bar options — bar_opts","text":"horizontal Logical. option turn column chart horizontal bar chart. endingShape Available Options: \"flat\" \"rounded\". columnWidth column charts, columnWidth percentage available width grid-rect. barHeight horizontal bar charts, barHeight percentage available height grid-rect. distributed Logical. Turn option make bars discrete. value indicates one bar per series. colors list parameters. dataLabels List fields position (available options: \"top\", \"center\" \"bottom\") ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/bar_opts.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Bar options — bar_opts","text":"list options can used ax_plotOptions.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/bar_opts.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Bar options — bar_opts","text":"See https://apexcharts.com/docs/options/plotoptions/bar/.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/bar_opts.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Bar options — bar_opts","text":"","code":"data(\"mpg\", package = \"ggplot2\") apex(mpg, aes(manufacturer)) %>% ax_plotOptions( bar = bar_opts( endingShape = \"rounded\", columnWidth = 100, distributed = TRUE ) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":[],\"type\":\"bar\",\"data\":[{\"x\":\"audi\",\"y\":18},{\"x\":\"chevrolet\",\"y\":19},{\"x\":\"dodge\",\"y\":37},{\"x\":\"ford\",\"y\":25},{\"x\":\"honda\",\"y\":9},{\"x\":\"hyundai\",\"y\":14},{\"x\":\"jeep\",\"y\":8},{\"x\":\"land rover\",\"y\":4},{\"x\":\"lincoln\",\"y\":3},{\"x\":\"mercury\",\"y\":4},{\"x\":\"nissan\",\"y\":13},{\"x\":\"pontiac\",\"y\":5},{\"x\":\"subaru\",\"y\":14},{\"x\":\"toyota\",\"y\":34},{\"x\":\"volkswagen\",\"y\":27}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false,\"endingShape\":\"rounded\",\"columnWidth\":100,\"distributed\":true}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"audi\",\"max\":\"volkswagen\"},\"type\":\"column\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/bubble_opts.html","id":null,"dir":"Reference","previous_headings":"","what":"Bubble options — bubble_opts","title":"Bubble options — bubble_opts","text":"Use options ax_plotOptions.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/bubble_opts.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Bubble options — bubble_opts","text":"","code":"bubble_opts(minBubbleRadius, maxBubbleRadius, ...)"},{"path":"https://dreamrs.github.io/apexcharter/reference/bubble_opts.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Bubble options — bubble_opts","text":"minBubbleRadius Minimum radius size bubble. bubble value small displayed, size used. maxBubbleRadius Maximum radius size bubble. bubble value large cover chart, size used. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/bubble_opts.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Bubble options — bubble_opts","text":"list options can used ax_plotOptions.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/bubble_opts.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Bubble options — bubble_opts","text":"See https://apexcharts.com/docs/options/plotoptions/bubble/.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/bubble_opts.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Bubble options — bubble_opts","text":"","code":"apex( data = mtcars, type = \"scatter\", mapping = aes(x = wt, y = mpg, z = qsec) ) %>% ax_plotOptions( bubble = bubble_opts( minBubbleRadius = 1, maxBubbleRadius = 20 ) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bubble\"},\"series\":[{\"name\":\"mpg\",\"type\":\"bubble\",\"data\":[{\"x\":2.62,\"y\":21,\"z\":16.46},{\"x\":2.875,\"y\":21,\"z\":17.02},{\"x\":2.32,\"y\":22.8,\"z\":18.61},{\"x\":3.215,\"y\":21.4,\"z\":19.44},{\"x\":3.44,\"y\":18.7,\"z\":17.02},{\"x\":3.46,\"y\":18.1,\"z\":20.22},{\"x\":3.57,\"y\":14.3,\"z\":15.84},{\"x\":3.19,\"y\":24.4,\"z\":20},{\"x\":3.15,\"y\":22.8,\"z\":22.9},{\"x\":3.44,\"y\":19.2,\"z\":18.3},{\"x\":3.44,\"y\":17.8,\"z\":18.9},{\"x\":4.07,\"y\":16.4,\"z\":17.4},{\"x\":3.73,\"y\":17.3,\"z\":17.6},{\"x\":3.78,\"y\":15.2,\"z\":18},{\"x\":5.25,\"y\":10.4,\"z\":17.98},{\"x\":5.424,\"y\":10.4,\"z\":17.82},{\"x\":5.345,\"y\":14.7,\"z\":17.42},{\"x\":2.2,\"y\":32.4,\"z\":19.47},{\"x\":1.615,\"y\":30.4,\"z\":18.52},{\"x\":1.835,\"y\":33.9,\"z\":19.9},{\"x\":2.465,\"y\":21.5,\"z\":20.01},{\"x\":3.52,\"y\":15.5,\"z\":16.87},{\"x\":3.435,\"y\":15.2,\"z\":17.3},{\"x\":3.84,\"y\":13.3,\"z\":15.41},{\"x\":3.845,\"y\":19.2,\"z\":17.05},{\"x\":1.935,\"y\":27.3,\"z\":18.9},{\"x\":2.14,\"y\":26,\"z\":16.7},{\"x\":1.513,\"y\":30.4,\"z\":16.9},{\"x\":3.17,\"y\":15.8,\"z\":14.5},{\"x\":2.77,\"y\":19.7,\"z\":15.5},{\"x\":3.57,\"y\":15,\"z\":14.6},{\"x\":2.78,\"y\":21.4,\"z\":18.6}]}],\"dataLabels\":{\"enabled\":false},\"xaxis\":{\"type\":\"numeric\",\"min\":1,\"max\":6,\"tickAmount\":5,\"crosshairs\":{\"show\":true,\"stroke\":{\"dashArray\":0}},\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"yaxis\":{\"min\":10,\"max\":35,\"tickAmount\":5,\"labels\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~r')(value) + '';}\",\"style\":{\"colors\":\"#848484\"}},\"tooltip\":{\"enabled\":true}},\"grid\":{\"xaxis\":{\"lines\":{\"show\":true}}},\"plotOptions\":{\"bubble\":{\"minBubbleRadius\":1,\"maxBubbleRadius\":20}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":1.513,\"max\":5.424},\"type\":\"bubble\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/candles.html","id":null,"dir":"Reference","previous_headings":"","what":"Candlestick demo data — candles","title":"Candlestick demo data — candles","text":"Candlestick demo data","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/candles.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Candlestick demo data — candles","text":"","code":"candles"},{"path":"https://dreamrs.github.io/apexcharter/reference/candles.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"Candlestick demo data — candles","text":"data frame 60 observations following 5 variables: datetime Timestamp. open Open value. high Highest value. low Lowest value. close Close value.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/candles.html","id":"source","dir":"Reference","previous_headings":"","what":"Source","title":"Candlestick demo data — candles","text":"Apexcharts (https://apexcharts.com/javascript-chart-demos/candlestick-charts/basic/)","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/climate_paris.html","id":null,"dir":"Reference","previous_headings":"","what":"Paris Climate — climate_paris","title":"Paris Climate — climate_paris","text":"Average temperature precipitation Paris period 1971-2000.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/climate_paris.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Paris Climate — climate_paris","text":"","code":"climate_paris"},{"path":"https://dreamrs.github.io/apexcharter/reference/climate_paris.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"Paris Climate — climate_paris","text":"data frame 12 observations following 3 variables: month Month temperature Temperature (degree celsius). precipitation Precipitation (mm).","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/climate_paris.html","id":"source","dir":"Reference","previous_headings":"","what":"Source","title":"Paris Climate — climate_paris","text":"Wikipedia (https://fr.wikipedia.org/wiki/Climat_de_Paris)","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/config_update.html","id":null,"dir":"Reference","previous_headings":"","what":"Configuration for auto update — config_update","title":"Configuration for auto update — config_update","text":"Configuration auto update","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/config_update.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Configuration for auto update — config_update","text":"","code":"config_update( series_animate = TRUE, update_options = FALSE, options_animate = TRUE, options_redrawPaths = TRUE, update_synced_charts = FALSE )"},{"path":"https://dreamrs.github.io/apexcharter/reference/config_update.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Configuration for auto update — config_update","text":"series_animate chart animate re-rendering. update_options Update global options chart. options_animate chart animate re-rendering. options_redrawPaths chart re-rendered, draw existing paths completely redraw chart paths beginning. default, chart re-rendered existing paths. update_synced_charts charts group also update one chart group updated.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/consumption.html","id":null,"dir":"Reference","previous_headings":"","what":"Electricity consumption and forecasting — consumption","title":"Electricity consumption and forecasting — consumption","text":"Electricity consumption per day France january february year 2020.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/consumption.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Electricity consumption and forecasting — consumption","text":"","code":"consumption"},{"path":"https://dreamrs.github.io/apexcharter/reference/consumption.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"Electricity consumption and forecasting — consumption","text":"data frame 120 observations following 3 variables: date date. type Type data : realized forecast. value Value giga-watt per hour.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/consumption.html","id":"source","dir":"Reference","previous_headings":"","what":"Source","title":"Electricity consumption and forecasting — consumption","text":"Rte (Electricity Transmission Network France) (https://data.rte-france.com/)","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/events_opts.html","id":null,"dir":"Reference","previous_headings":"","what":"Events options — events_opts","title":"Events options — events_opts","text":"Events options","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/events_opts.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Events options — events_opts","text":"","code":"events_opts( click = NULL, beforeMount = NULL, mounted = NULL, updated = NULL, legendClick = NULL, selection = NULL, dataPointSelection = NULL, dataPointMouseEnter = NULL, dataPointMouseLeave = NULL, beforeZoom = NULL, zoomed = NULL, scrolled = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/events_opts.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Events options — events_opts","text":"click Fires user clicks area chart. beforeMount Fires chart drawn screen. mounted Fires chart drawn screen. updated Fires chart dynamically updated. legendClick Fires user clicks legend. selection Fires user selects rect using selection tool. dataPointSelection Fires user clicks datapoint (bar/column/marker/bubble/donut-slice). dataPointMouseEnter Fires user's mouse enter datapoint (bar/column/marker/bubble/donut-slice). dataPointMouseLeave MouseLeave event datapoint (bar/column/marker/bubble/donut-slice). beforeZoom function, defined, runs just zooming /chart allowing set custom range zooming /. zoomed Fires user zooms /chart using either selection zooming tool zoom /buttons. scrolled Fires user scrolls using pan tool. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/events_opts.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Events options — events_opts","text":"list options can used ax_chart.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/events_opts.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Events options — events_opts","text":"arguments JavaScript function defined htmlwidgets::JS. See https://apexcharts.com/docs/options/chart/events/.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/events_opts.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Events options — events_opts","text":"","code":"if (interactive()) { library(shiny) ui <- fluidPage( fluidRow( column( width = 8, offset = 2, tags$h2(\"Apexchart in Shiny\"), apexchartOutput(\"chart\"), verbatimTextOutput(outputId = \"res_click\") ) ) ) server <- function(input, output, session) { output$chart <- renderApexchart({ apexchart() %>% ax_chart( type = \"bar\", events = events_opts( dataPointSelection = JS( \"function(event, chartContext, config) { Shiny.setInputValue('click', config.selectedDataPoints) }\" ) ) ) %>% ax_series( list( name = \"Example\", data = sample(1:100, 5) ) ) %>% ax_xaxis( categories = LETTERS[1:5] ) }) output$res_click <- renderPrint({ input$click }) } shinyApp(ui, server) }"},{"path":"https://dreamrs.github.io/apexcharter/reference/format_date.html","id":null,"dir":"Reference","previous_headings":"","what":"Format date in JS — format_date","title":"Format date in JS — format_date","text":"Format date JS","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/format_date.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Format date in JS — format_date","text":"","code":"format_date(x)"},{"path":"https://dreamrs.github.io/apexcharter/reference/format_date.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Format date in JS — format_date","text":"x Date use JavaScript","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/format_date.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Format date in JS — format_date","text":"JavaScript string","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/format_num.html","id":null,"dir":"Reference","previous_headings":"","what":"Format numbers (with D3) — format_num","title":"Format numbers (with D3) — format_num","text":"Format numbers (D3)","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/format_num.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Format numbers (with D3) — format_num","text":"","code":"format_num(format, prefix = \"\", suffix = \"\", locale = \"en-US\")"},{"path":"https://dreamrs.github.io/apexcharter/reference/format_num.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Format numbers (with D3) — format_num","text":"format Format numbers, currency, percentage, e.g. \".0%\" rounded percentage. See online documentation : https://github.com/d3/d3-format. prefix Character string append formatted value. suffix Character string append formatted value. locale Localization use, example \"fr-FR\" french, see possible values : https://github.com/d3/d3-format/tree/master/locale.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/format_num.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Format numbers (with D3) — format_num","text":"JS function","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/format_num.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Format numbers (with D3) — format_num","text":"","code":"# Use SI prefix dat <- data.frame( labels = c(\"apex\", \"charts\"), values = c(1e4, 2e4) ) apex(dat, aes(labels, values), \"column\") %>% ax_yaxis(labels = list( formatter = format_num(\"~s\") )) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"values\",\"type\":\"bar\",\"data\":[{\"x\":\"apex\",\"y\":10000},{\"x\":\"charts\",\"y\":20000}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"},\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~s')(value) + '';}\"}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"apex\",\"max\":\"charts\"},\"type\":\"column\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} apex(dat, aes(labels, values * 100), \"column\") %>% ax_yaxis(labels = list( formatter = format_num(\"~s\") )) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"values * 100\",\"type\":\"bar\",\"data\":[{\"x\":\"apex\",\"y\":1000000},{\"x\":\"charts\",\"y\":2000000}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"},\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('~s')(value) + '';}\"}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"apex\",\"max\":\"charts\"},\"type\":\"column\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} # Percentage dat <- data.frame( labels = c(\"apex\", \"charts\"), values = c(0.45, 0.55) ) apex(dat, aes(labels, values), \"column\") %>% ax_yaxis(labels = list( formatter = format_num(\".0%\") )) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"values\",\"type\":\"bar\",\"data\":[{\"x\":\"apex\",\"y\":0.45},{\"x\":\"charts\",\"y\":0.55}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"},\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('.0%')(value) + '';}\"}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"apex\",\"max\":\"charts\"},\"type\":\"column\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} # Currency dat <- data.frame( labels = c(\"apex\", \"charts\"), values = c(570, 1170) ) apex(dat, aes(labels, values), \"column\") %>% ax_yaxis(labels = list( formatter = format_num(\"$,.2f\") )) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"values\",\"type\":\"bar\",\"data\":[{\"x\":\"apex\",\"y\":570},{\"x\":\"charts\",\"y\":1170}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"},\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format('$,.2f')(value) + '';}\"}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"apex\",\"max\":\"charts\"},\"type\":\"column\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} # Change locale apex(dat, aes(labels, values), \"column\") %>% ax_yaxis(labels = list( formatter = format_num(\"$,.2f\", locale = \"fr-FR\") )) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"values\",\"type\":\"bar\",\"data\":[{\"x\":\"apex\",\"y\":570},{\"x\":\"charts\",\"y\":1170}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"},\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\",\\\", \\\"thousands\\\": \\\"\\\\u00a0\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"\\\", \\\"\\\\u00a0\\\\u20ac\\\"], \\\"percent\\\": \\\"\\\\u202f%\\\"}')); return '' + locale.format('$,.2f')(value) + '';}\"}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"apex\",\"max\":\"charts\"},\"type\":\"column\"},\"evals\":[\"ax_opts.yaxis.labels.formatter\"],\"jsHooks\":[]} # Customize tooltip value # Use SI prefix dat <- data.frame( labels = c(\"apex\", \"charts\"), values = c(1e4, 2e4) ) apex(dat, aes(labels, values), \"column\") %>% ax_tooltip(y = list( formatter = format_num(\",\", suffix = \" GW/h\") )) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"values\",\"type\":\"bar\",\"data\":[{\"x\":\"apex\",\"y\":10000},{\"x\":\"charts\",\"y\":20000}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true,\"y\":{\"formatter\":\"function(value) {var locale = formatLocale(JSON.parse('{ \\\"decimal\\\": \\\".\\\", \\\"thousands\\\": \\\",\\\", \\\"grouping\\\": [3], \\\"currency\\\": [\\\"$\\\", \\\"\\\"]}')); return '' + locale.format(',')(value) + ' GW/h';}\"}},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"apex\",\"max\":\"charts\"},\"type\":\"column\"},\"evals\":[\"ax_opts.tooltip.y.formatter\"],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/heatmap_opts.html","id":null,"dir":"Reference","previous_headings":"","what":"Heatmap options — heatmap_opts","title":"Heatmap options — heatmap_opts","text":"Use options ax_plotOptions.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/heatmap_opts.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Heatmap options — heatmap_opts","text":"","code":"heatmap_opts( radius = NULL, enableShades = NULL, shadeIntensity = NULL, colorScale = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/heatmap_opts.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Heatmap options — heatmap_opts","text":"radius Numeric. Radius rectangle inside heatmap. enableShades Logical. Enable different shades color depending value shadeIntensity Numeric [0,1]. intensity shades generated value. colorScale List. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/heatmap_opts.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Heatmap options — heatmap_opts","text":"list options can used ax_plotOptions.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/heatmap_opts.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Heatmap options — heatmap_opts","text":"See https://apexcharts.com/docs/options/plotoptions/heatmap/.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/heatmap_opts.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Heatmap options — heatmap_opts","text":"","code":"df <- expand.grid( month = month.name, person = c(\"Obi-Wan\", \"Luke\", \"Anakin\", \"Leia\") ) df$value <- sample(0:1, nrow(df), TRUE) apex( data = df, mapping = aes(x = month, y = person, fill = value), type = \"heatmap\" ) %>% ax_plotOptions( heatmap = heatmap_opts( enableShades = FALSE, colorScale = list( ranges = list( list(from = 0, to = 0.5, color = \"#FF0000\"), list(from = 0.5, to = 1, color = \"#088A08\") ) ) ) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"heatmap\"},\"series\":[{\"name\":\"Obi-Wan\",\"data\":[{\"x\":\"January\",\"y\":1},{\"x\":\"February\",\"y\":0},{\"x\":\"March\",\"y\":1},{\"x\":\"April\",\"y\":1},{\"x\":\"May\",\"y\":0},{\"x\":\"June\",\"y\":1},{\"x\":\"July\",\"y\":0},{\"x\":\"August\",\"y\":1},{\"x\":\"September\",\"y\":1},{\"x\":\"October\",\"y\":0},{\"x\":\"November\",\"y\":1},{\"x\":\"December\",\"y\":1}]},{\"name\":\"Luke\",\"data\":[{\"x\":\"January\",\"y\":0},{\"x\":\"February\",\"y\":1},{\"x\":\"March\",\"y\":1},{\"x\":\"April\",\"y\":1},{\"x\":\"May\",\"y\":0},{\"x\":\"June\",\"y\":1},{\"x\":\"July\",\"y\":0},{\"x\":\"August\",\"y\":1},{\"x\":\"September\",\"y\":0},{\"x\":\"October\",\"y\":1},{\"x\":\"November\",\"y\":0},{\"x\":\"December\",\"y\":1}]},{\"name\":\"Anakin\",\"data\":[{\"x\":\"January\",\"y\":1},{\"x\":\"February\",\"y\":0},{\"x\":\"March\",\"y\":1},{\"x\":\"April\",\"y\":0},{\"x\":\"May\",\"y\":1},{\"x\":\"June\",\"y\":0},{\"x\":\"July\",\"y\":0},{\"x\":\"August\",\"y\":0},{\"x\":\"September\",\"y\":0},{\"x\":\"October\",\"y\":0},{\"x\":\"November\",\"y\":0},{\"x\":\"December\",\"y\":0}]},{\"name\":\"Leia\",\"data\":[{\"x\":\"January\",\"y\":1},{\"x\":\"February\",\"y\":0},{\"x\":\"March\",\"y\":1},{\"x\":\"April\",\"y\":1},{\"x\":\"May\",\"y\":1},{\"x\":\"June\",\"y\":0},{\"x\":\"July\",\"y\":1},{\"x\":\"August\",\"y\":0},{\"x\":\"September\",\"y\":1},{\"x\":\"October\",\"y\":0},{\"x\":\"November\",\"y\":1},{\"x\":\"December\",\"y\":1}]}],\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"plotOptions\":{\"heatmap\":{\"enableShades\":false,\"colorScale\":{\"ranges\":[{\"from\":0,\"to\":0.5,\"color\":\"#FF0000\"},{\"from\":0.5,\"to\":1,\"color\":\"#088A08\"}]}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"type\":\"heatmap\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/label.html","id":null,"dir":"Reference","previous_headings":"","what":"Label for annotations — label","title":"Label for annotations — label","text":"Label annotations","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/label.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Label for annotations — label","text":"","code":"label( text = NULL, borderColor = NULL, borderWidth = NULL, textAnchor = NULL, position = NULL, offsetX = NULL, offsetY = NULL, background = NULL, color = NULL, fontSize = NULL, fontWeight = NULL, fontFamily = NULL, cssClass = NULL, padding = c(2, 5, 2, 5) )"},{"path":"https://dreamrs.github.io/apexcharter/reference/label.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Label for annotations — label","text":"text Text annotation label. borderColor Border color label. borderWidth Border width label. textAnchor alignment text relative label's drawing position. position Available options: left right. offsetX Sets left offset annotation label. offsetY Sets top offset annotation label. background Background Color annotation label. color ForeColor annotation label. fontSize FontSize annotation label. fontWeight Font-weight annotation label. fontFamily Font-family annotation label. cssClass custom Css Class give annotation label elements. padding Padding label: top, right, bottom, left.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/label.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Label for annotations — label","text":"list can used add_shade, add_point, add_event, add_event_marker.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/parse_df.html","id":null,"dir":"Reference","previous_headings":"","what":"Convert a data.frame to a list — parse_df","title":"Convert a data.frame to a list — parse_df","text":"Convert data format suitable ApexCharts.js","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/parse_df.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Convert a data.frame to a list — parse_df","text":"","code":"parse_df(data, add_names = FALSE)"},{"path":"https://dreamrs.github.io/apexcharter/reference/parse_df.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Convert a data.frame to a list — parse_df","text":"data data.frame object coercible data.frame. add_names Use names columns output. Can logical reuse data names character vector new names.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/parse_df.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Convert a data.frame to a list — parse_df","text":"list can used specify data ax_series example.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/parse_df.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Convert a data.frame to a list — parse_df","text":"","code":"# All iris dataset parse_df(iris) #> [[1]] #> [[1]][[1]] #> [1] 5.1 #> #> [[1]][[2]] #> [1] 3.5 #> #> [[1]][[3]] #> [1] 1.4 #> #> [[1]][[4]] #> [1] 0.2 #> #> [[1]][[5]] #> [1] \"setosa\" #> #> #> [[2]] #> [[2]][[1]] #> [1] 4.9 #> #> [[2]][[2]] #> [1] 3 #> #> [[2]][[3]] #> [1] 1.4 #> #> [[2]][[4]] #> [1] 0.2 #> #> [[2]][[5]] #> [1] \"setosa\" #> #> #> [[3]] #> [[3]][[1]] #> [1] 4.7 #> #> [[3]][[2]] #> [1] 3.2 #> #> [[3]][[3]] #> [1] 1.3 #> #> [[3]][[4]] #> [1] 0.2 #> #> [[3]][[5]] #> [1] \"setosa\" #> #> #> [[4]] #> [[4]][[1]] #> [1] 4.6 #> #> [[4]][[2]] #> [1] 3.1 #> #> [[4]][[3]] #> [1] 1.5 #> #> [[4]][[4]] #> [1] 0.2 #> #> [[4]][[5]] #> [1] \"setosa\" #> #> #> [[5]] #> [[5]][[1]] #> [1] 5 #> #> [[5]][[2]] #> [1] 3.6 #> #> [[5]][[3]] #> [1] 1.4 #> #> [[5]][[4]] #> [1] 0.2 #> #> [[5]][[5]] #> [1] \"setosa\" #> #> #> [[6]] #> [[6]][[1]] #> [1] 5.4 #> #> [[6]][[2]] #> [1] 3.9 #> #> [[6]][[3]] #> [1] 1.7 #> #> [[6]][[4]] #> [1] 0.4 #> #> [[6]][[5]] #> [1] \"setosa\" #> #> #> [[7]] #> [[7]][[1]] #> [1] 4.6 #> #> [[7]][[2]] #> [1] 3.4 #> #> [[7]][[3]] #> [1] 1.4 #> #> [[7]][[4]] #> [1] 0.3 #> #> [[7]][[5]] #> [1] \"setosa\" #> #> #> [[8]] #> [[8]][[1]] #> [1] 5 #> #> [[8]][[2]] #> [1] 3.4 #> #> [[8]][[3]] #> [1] 1.5 #> #> [[8]][[4]] #> [1] 0.2 #> #> [[8]][[5]] #> [1] \"setosa\" #> #> #> [[9]] #> [[9]][[1]] #> [1] 4.4 #> #> [[9]][[2]] #> [1] 2.9 #> #> [[9]][[3]] #> [1] 1.4 #> #> [[9]][[4]] #> [1] 0.2 #> #> [[9]][[5]] #> [1] \"setosa\" #> #> #> [[10]] #> [[10]][[1]] #> [1] 4.9 #> #> [[10]][[2]] #> [1] 3.1 #> #> [[10]][[3]] #> [1] 1.5 #> #> [[10]][[4]] #> [1] 0.1 #> #> [[10]][[5]] #> [1] \"setosa\" #> #> #> [[11]] #> [[11]][[1]] #> [1] 5.4 #> #> [[11]][[2]] #> [1] 3.7 #> #> [[11]][[3]] #> [1] 1.5 #> #> [[11]][[4]] #> [1] 0.2 #> #> [[11]][[5]] #> [1] \"setosa\" #> #> #> [[12]] #> [[12]][[1]] #> [1] 4.8 #> #> [[12]][[2]] #> [1] 3.4 #> #> [[12]][[3]] #> [1] 1.6 #> #> [[12]][[4]] #> [1] 0.2 #> #> [[12]][[5]] #> [1] \"setosa\" #> #> #> [[13]] #> [[13]][[1]] #> [1] 4.8 #> #> [[13]][[2]] #> [1] 3 #> #> [[13]][[3]] #> [1] 1.4 #> #> [[13]][[4]] #> [1] 0.1 #> #> [[13]][[5]] #> [1] \"setosa\" #> #> #> [[14]] #> [[14]][[1]] #> [1] 4.3 #> #> [[14]][[2]] #> [1] 3 #> #> [[14]][[3]] #> [1] 1.1 #> #> [[14]][[4]] #> [1] 0.1 #> #> [[14]][[5]] #> [1] \"setosa\" #> #> #> [[15]] #> [[15]][[1]] #> [1] 5.8 #> #> [[15]][[2]] #> [1] 4 #> #> [[15]][[3]] #> [1] 1.2 #> #> [[15]][[4]] #> [1] 0.2 #> #> [[15]][[5]] #> [1] \"setosa\" #> #> #> [[16]] #> [[16]][[1]] #> [1] 5.7 #> #> [[16]][[2]] #> [1] 4.4 #> #> [[16]][[3]] #> [1] 1.5 #> #> [[16]][[4]] #> [1] 0.4 #> #> [[16]][[5]] #> [1] \"setosa\" #> #> #> [[17]] #> [[17]][[1]] #> [1] 5.4 #> #> [[17]][[2]] #> [1] 3.9 #> #> [[17]][[3]] #> [1] 1.3 #> #> [[17]][[4]] #> [1] 0.4 #> #> [[17]][[5]] #> [1] \"setosa\" #> #> #> [[18]] #> [[18]][[1]] #> [1] 5.1 #> #> [[18]][[2]] #> [1] 3.5 #> #> [[18]][[3]] #> [1] 1.4 #> #> [[18]][[4]] #> [1] 0.3 #> #> [[18]][[5]] #> [1] \"setosa\" #> #> #> [[19]] #> [[19]][[1]] #> [1] 5.7 #> #> [[19]][[2]] #> [1] 3.8 #> #> [[19]][[3]] #> [1] 1.7 #> #> [[19]][[4]] #> [1] 0.3 #> #> [[19]][[5]] #> [1] \"setosa\" #> #> #> [[20]] #> [[20]][[1]] #> [1] 5.1 #> #> [[20]][[2]] #> [1] 3.8 #> #> [[20]][[3]] #> [1] 1.5 #> #> [[20]][[4]] #> [1] 0.3 #> #> [[20]][[5]] #> [1] \"setosa\" #> #> #> [[21]] #> [[21]][[1]] #> [1] 5.4 #> #> [[21]][[2]] #> [1] 3.4 #> #> [[21]][[3]] #> [1] 1.7 #> #> [[21]][[4]] #> [1] 0.2 #> #> [[21]][[5]] #> [1] \"setosa\" #> #> #> [[22]] #> [[22]][[1]] #> [1] 5.1 #> #> [[22]][[2]] #> [1] 3.7 #> #> [[22]][[3]] #> [1] 1.5 #> #> [[22]][[4]] #> [1] 0.4 #> #> [[22]][[5]] #> [1] \"setosa\" #> #> #> [[23]] #> [[23]][[1]] #> [1] 4.6 #> #> [[23]][[2]] #> [1] 3.6 #> #> [[23]][[3]] #> [1] 1 #> #> [[23]][[4]] #> [1] 0.2 #> #> [[23]][[5]] #> [1] \"setosa\" #> #> #> [[24]] #> [[24]][[1]] #> [1] 5.1 #> #> [[24]][[2]] #> [1] 3.3 #> #> [[24]][[3]] #> [1] 1.7 #> #> [[24]][[4]] #> [1] 0.5 #> #> [[24]][[5]] #> [1] \"setosa\" #> #> #> [[25]] #> [[25]][[1]] #> [1] 4.8 #> #> [[25]][[2]] #> [1] 3.4 #> #> [[25]][[3]] #> [1] 1.9 #> #> [[25]][[4]] #> [1] 0.2 #> #> [[25]][[5]] #> [1] \"setosa\" #> #> #> [[26]] #> [[26]][[1]] #> [1] 5 #> #> [[26]][[2]] #> [1] 3 #> #> [[26]][[3]] #> [1] 1.6 #> #> [[26]][[4]] #> [1] 0.2 #> #> [[26]][[5]] #> [1] \"setosa\" #> #> #> [[27]] #> [[27]][[1]] #> [1] 5 #> #> [[27]][[2]] #> [1] 3.4 #> #> [[27]][[3]] #> [1] 1.6 #> #> [[27]][[4]] #> [1] 0.4 #> #> [[27]][[5]] #> [1] \"setosa\" #> #> #> [[28]] #> [[28]][[1]] #> [1] 5.2 #> #> [[28]][[2]] #> [1] 3.5 #> #> [[28]][[3]] #> [1] 1.5 #> #> [[28]][[4]] #> [1] 0.2 #> #> [[28]][[5]] #> [1] \"setosa\" #> #> #> [[29]] #> [[29]][[1]] #> [1] 5.2 #> #> [[29]][[2]] #> [1] 3.4 #> #> [[29]][[3]] #> [1] 1.4 #> #> [[29]][[4]] #> [1] 0.2 #> #> [[29]][[5]] #> [1] \"setosa\" #> #> #> [[30]] #> [[30]][[1]] #> [1] 4.7 #> #> [[30]][[2]] #> [1] 3.2 #> #> [[30]][[3]] #> [1] 1.6 #> #> [[30]][[4]] #> [1] 0.2 #> #> [[30]][[5]] #> [1] \"setosa\" #> #> #> [[31]] #> [[31]][[1]] #> [1] 4.8 #> #> [[31]][[2]] #> [1] 3.1 #> #> [[31]][[3]] #> [1] 1.6 #> #> [[31]][[4]] #> [1] 0.2 #> #> [[31]][[5]] #> [1] \"setosa\" #> #> #> [[32]] #> [[32]][[1]] #> [1] 5.4 #> #> [[32]][[2]] #> [1] 3.4 #> #> [[32]][[3]] #> [1] 1.5 #> #> [[32]][[4]] #> [1] 0.4 #> #> [[32]][[5]] #> [1] \"setosa\" #> #> #> [[33]] #> [[33]][[1]] #> [1] 5.2 #> #> [[33]][[2]] #> [1] 4.1 #> #> [[33]][[3]] #> [1] 1.5 #> #> [[33]][[4]] #> [1] 0.1 #> #> [[33]][[5]] #> [1] \"setosa\" #> #> #> [[34]] #> [[34]][[1]] #> [1] 5.5 #> #> [[34]][[2]] #> [1] 4.2 #> #> [[34]][[3]] #> [1] 1.4 #> #> [[34]][[4]] #> [1] 0.2 #> #> [[34]][[5]] #> [1] \"setosa\" #> #> #> [[35]] #> [[35]][[1]] #> [1] 4.9 #> #> [[35]][[2]] #> [1] 3.1 #> #> [[35]][[3]] #> [1] 1.5 #> #> [[35]][[4]] #> [1] 0.2 #> #> [[35]][[5]] #> [1] \"setosa\" #> #> #> [[36]] #> [[36]][[1]] #> [1] 5 #> #> [[36]][[2]] #> [1] 3.2 #> #> [[36]][[3]] #> [1] 1.2 #> #> [[36]][[4]] #> [1] 0.2 #> #> [[36]][[5]] #> [1] \"setosa\" #> #> #> [[37]] #> [[37]][[1]] #> [1] 5.5 #> #> [[37]][[2]] #> [1] 3.5 #> #> [[37]][[3]] #> [1] 1.3 #> #> [[37]][[4]] #> [1] 0.2 #> #> [[37]][[5]] #> [1] \"setosa\" #> #> #> [[38]] #> [[38]][[1]] #> [1] 4.9 #> #> [[38]][[2]] #> [1] 3.6 #> #> [[38]][[3]] #> [1] 1.4 #> #> [[38]][[4]] #> [1] 0.1 #> #> [[38]][[5]] #> [1] \"setosa\" #> #> #> [[39]] #> [[39]][[1]] #> [1] 4.4 #> #> [[39]][[2]] #> [1] 3 #> #> [[39]][[3]] #> [1] 1.3 #> #> [[39]][[4]] #> [1] 0.2 #> #> [[39]][[5]] #> [1] \"setosa\" #> #> #> [[40]] #> [[40]][[1]] #> [1] 5.1 #> #> [[40]][[2]] #> [1] 3.4 #> #> [[40]][[3]] #> [1] 1.5 #> #> [[40]][[4]] #> [1] 0.2 #> #> [[40]][[5]] #> [1] \"setosa\" #> #> #> [[41]] #> [[41]][[1]] #> [1] 5 #> #> [[41]][[2]] #> [1] 3.5 #> #> [[41]][[3]] #> [1] 1.3 #> #> [[41]][[4]] #> [1] 0.3 #> #> [[41]][[5]] #> [1] \"setosa\" #> #> #> [[42]] #> [[42]][[1]] #> [1] 4.5 #> #> [[42]][[2]] #> [1] 2.3 #> #> [[42]][[3]] #> [1] 1.3 #> #> [[42]][[4]] #> [1] 0.3 #> #> [[42]][[5]] #> [1] \"setosa\" #> #> #> [[43]] #> [[43]][[1]] #> [1] 4.4 #> #> [[43]][[2]] #> [1] 3.2 #> #> [[43]][[3]] #> [1] 1.3 #> #> [[43]][[4]] #> [1] 0.2 #> #> [[43]][[5]] #> [1] \"setosa\" #> #> #> [[44]] #> [[44]][[1]] #> [1] 5 #> #> [[44]][[2]] #> [1] 3.5 #> #> [[44]][[3]] #> [1] 1.6 #> #> [[44]][[4]] #> [1] 0.6 #> #> [[44]][[5]] #> [1] \"setosa\" #> #> #> [[45]] #> [[45]][[1]] #> [1] 5.1 #> #> [[45]][[2]] #> [1] 3.8 #> #> [[45]][[3]] #> [1] 1.9 #> #> [[45]][[4]] #> [1] 0.4 #> #> [[45]][[5]] #> [1] \"setosa\" #> #> #> [[46]] #> [[46]][[1]] #> [1] 4.8 #> #> [[46]][[2]] #> [1] 3 #> #> [[46]][[3]] #> [1] 1.4 #> #> [[46]][[4]] #> [1] 0.3 #> #> [[46]][[5]] #> [1] \"setosa\" #> #> #> [[47]] #> [[47]][[1]] #> [1] 5.1 #> #> [[47]][[2]] #> [1] 3.8 #> #> [[47]][[3]] #> [1] 1.6 #> #> [[47]][[4]] #> [1] 0.2 #> #> [[47]][[5]] #> [1] \"setosa\" #> #> #> [[48]] #> [[48]][[1]] #> [1] 4.6 #> #> [[48]][[2]] #> [1] 3.2 #> #> [[48]][[3]] #> [1] 1.4 #> #> [[48]][[4]] #> [1] 0.2 #> #> [[48]][[5]] #> [1] \"setosa\" #> #> #> [[49]] #> [[49]][[1]] #> [1] 5.3 #> #> [[49]][[2]] #> [1] 3.7 #> #> [[49]][[3]] #> [1] 1.5 #> #> [[49]][[4]] #> [1] 0.2 #> #> [[49]][[5]] #> [1] \"setosa\" #> #> #> [[50]] #> [[50]][[1]] #> [1] 5 #> #> [[50]][[2]] #> [1] 3.3 #> #> [[50]][[3]] #> [1] 1.4 #> #> [[50]][[4]] #> [1] 0.2 #> #> [[50]][[5]] #> [1] \"setosa\" #> #> #> [[51]] #> [[51]][[1]] #> [1] 7 #> #> [[51]][[2]] #> [1] 3.2 #> #> [[51]][[3]] #> [1] 4.7 #> #> [[51]][[4]] #> [1] 1.4 #> #> [[51]][[5]] #> [1] \"versicolor\" #> #> #> [[52]] #> [[52]][[1]] #> [1] 6.4 #> #> [[52]][[2]] #> [1] 3.2 #> #> [[52]][[3]] #> [1] 4.5 #> #> [[52]][[4]] #> [1] 1.5 #> #> [[52]][[5]] #> [1] \"versicolor\" #> #> #> [[53]] #> [[53]][[1]] #> [1] 6.9 #> #> [[53]][[2]] #> [1] 3.1 #> #> [[53]][[3]] #> [1] 4.9 #> #> [[53]][[4]] #> [1] 1.5 #> #> [[53]][[5]] #> [1] \"versicolor\" #> #> #> [[54]] #> [[54]][[1]] #> [1] 5.5 #> #> [[54]][[2]] #> [1] 2.3 #> #> [[54]][[3]] #> [1] 4 #> #> [[54]][[4]] #> [1] 1.3 #> #> [[54]][[5]] #> [1] \"versicolor\" #> #> #> [[55]] #> [[55]][[1]] #> [1] 6.5 #> #> [[55]][[2]] #> [1] 2.8 #> #> [[55]][[3]] #> [1] 4.6 #> #> [[55]][[4]] #> [1] 1.5 #> #> [[55]][[5]] #> [1] \"versicolor\" #> #> #> [[56]] #> [[56]][[1]] #> [1] 5.7 #> #> [[56]][[2]] #> [1] 2.8 #> #> [[56]][[3]] #> [1] 4.5 #> #> [[56]][[4]] #> [1] 1.3 #> #> [[56]][[5]] #> [1] \"versicolor\" #> #> #> [[57]] #> [[57]][[1]] #> [1] 6.3 #> #> [[57]][[2]] #> [1] 3.3 #> #> [[57]][[3]] #> [1] 4.7 #> #> [[57]][[4]] #> [1] 1.6 #> #> [[57]][[5]] #> [1] \"versicolor\" #> #> #> [[58]] #> [[58]][[1]] #> [1] 4.9 #> #> [[58]][[2]] #> [1] 2.4 #> #> [[58]][[3]] #> [1] 3.3 #> #> [[58]][[4]] #> [1] 1 #> #> [[58]][[5]] #> [1] \"versicolor\" #> #> #> [[59]] #> [[59]][[1]] #> [1] 6.6 #> #> [[59]][[2]] #> [1] 2.9 #> #> [[59]][[3]] #> [1] 4.6 #> #> [[59]][[4]] #> [1] 1.3 #> #> [[59]][[5]] #> [1] \"versicolor\" #> #> #> [[60]] #> [[60]][[1]] #> [1] 5.2 #> #> [[60]][[2]] #> [1] 2.7 #> #> [[60]][[3]] #> [1] 3.9 #> #> [[60]][[4]] #> [1] 1.4 #> #> [[60]][[5]] #> [1] \"versicolor\" #> #> #> [[61]] #> [[61]][[1]] #> [1] 5 #> #> [[61]][[2]] #> [1] 2 #> #> [[61]][[3]] #> [1] 3.5 #> #> [[61]][[4]] #> [1] 1 #> #> [[61]][[5]] #> [1] \"versicolor\" #> #> #> [[62]] #> [[62]][[1]] #> [1] 5.9 #> #> [[62]][[2]] #> [1] 3 #> #> [[62]][[3]] #> [1] 4.2 #> #> [[62]][[4]] #> [1] 1.5 #> #> [[62]][[5]] #> [1] \"versicolor\" #> #> #> [[63]] #> [[63]][[1]] #> [1] 6 #> #> [[63]][[2]] #> [1] 2.2 #> #> [[63]][[3]] #> [1] 4 #> #> [[63]][[4]] #> [1] 1 #> #> [[63]][[5]] #> [1] \"versicolor\" #> #> #> [[64]] #> [[64]][[1]] #> [1] 6.1 #> #> [[64]][[2]] #> [1] 2.9 #> #> [[64]][[3]] #> [1] 4.7 #> #> [[64]][[4]] #> [1] 1.4 #> #> [[64]][[5]] #> [1] \"versicolor\" #> #> #> [[65]] #> [[65]][[1]] #> [1] 5.6 #> #> [[65]][[2]] #> [1] 2.9 #> #> [[65]][[3]] #> [1] 3.6 #> #> [[65]][[4]] #> [1] 1.3 #> #> [[65]][[5]] #> [1] \"versicolor\" #> #> #> [[66]] #> [[66]][[1]] #> [1] 6.7 #> #> [[66]][[2]] #> [1] 3.1 #> #> [[66]][[3]] #> [1] 4.4 #> #> [[66]][[4]] #> [1] 1.4 #> #> [[66]][[5]] #> [1] \"versicolor\" #> #> #> [[67]] #> [[67]][[1]] #> [1] 5.6 #> #> [[67]][[2]] #> [1] 3 #> #> [[67]][[3]] #> [1] 4.5 #> #> [[67]][[4]] #> [1] 1.5 #> #> [[67]][[5]] #> [1] \"versicolor\" #> #> #> [[68]] #> [[68]][[1]] #> [1] 5.8 #> #> [[68]][[2]] #> [1] 2.7 #> #> [[68]][[3]] #> [1] 4.1 #> #> [[68]][[4]] #> [1] 1 #> #> [[68]][[5]] #> [1] \"versicolor\" #> #> #> [[69]] #> [[69]][[1]] #> [1] 6.2 #> #> [[69]][[2]] #> [1] 2.2 #> #> [[69]][[3]] #> [1] 4.5 #> #> [[69]][[4]] #> [1] 1.5 #> #> [[69]][[5]] #> [1] \"versicolor\" #> #> #> [[70]] #> [[70]][[1]] #> [1] 5.6 #> #> [[70]][[2]] #> [1] 2.5 #> #> [[70]][[3]] #> [1] 3.9 #> #> [[70]][[4]] #> [1] 1.1 #> #> [[70]][[5]] #> [1] \"versicolor\" #> #> #> [[71]] #> [[71]][[1]] #> [1] 5.9 #> #> [[71]][[2]] #> [1] 3.2 #> #> [[71]][[3]] #> [1] 4.8 #> #> [[71]][[4]] #> [1] 1.8 #> #> [[71]][[5]] #> [1] \"versicolor\" #> #> #> [[72]] #> [[72]][[1]] #> [1] 6.1 #> #> [[72]][[2]] #> [1] 2.8 #> #> [[72]][[3]] #> [1] 4 #> #> [[72]][[4]] #> [1] 1.3 #> #> [[72]][[5]] #> [1] \"versicolor\" #> #> #> [[73]] #> [[73]][[1]] #> [1] 6.3 #> #> [[73]][[2]] #> [1] 2.5 #> #> [[73]][[3]] #> [1] 4.9 #> #> [[73]][[4]] #> [1] 1.5 #> #> [[73]][[5]] #> [1] \"versicolor\" #> #> #> [[74]] #> [[74]][[1]] #> [1] 6.1 #> #> [[74]][[2]] #> [1] 2.8 #> #> [[74]][[3]] #> [1] 4.7 #> #> [[74]][[4]] #> [1] 1.2 #> #> [[74]][[5]] #> [1] \"versicolor\" #> #> #> [[75]] #> [[75]][[1]] #> [1] 6.4 #> #> [[75]][[2]] #> [1] 2.9 #> #> [[75]][[3]] #> [1] 4.3 #> #> [[75]][[4]] #> [1] 1.3 #> #> [[75]][[5]] #> [1] \"versicolor\" #> #> #> [[76]] #> [[76]][[1]] #> [1] 6.6 #> #> [[76]][[2]] #> [1] 3 #> #> [[76]][[3]] #> [1] 4.4 #> #> [[76]][[4]] #> [1] 1.4 #> #> [[76]][[5]] #> [1] \"versicolor\" #> #> #> [[77]] #> [[77]][[1]] #> [1] 6.8 #> #> [[77]][[2]] #> [1] 2.8 #> #> [[77]][[3]] #> [1] 4.8 #> #> [[77]][[4]] #> [1] 1.4 #> #> [[77]][[5]] #> [1] \"versicolor\" #> #> #> [[78]] #> [[78]][[1]] #> [1] 6.7 #> #> [[78]][[2]] #> [1] 3 #> #> [[78]][[3]] #> [1] 5 #> #> [[78]][[4]] #> [1] 1.7 #> #> [[78]][[5]] #> [1] \"versicolor\" #> #> #> [[79]] #> [[79]][[1]] #> [1] 6 #> #> [[79]][[2]] #> [1] 2.9 #> #> [[79]][[3]] #> [1] 4.5 #> #> [[79]][[4]] #> [1] 1.5 #> #> [[79]][[5]] #> [1] \"versicolor\" #> #> #> [[80]] #> [[80]][[1]] #> [1] 5.7 #> #> [[80]][[2]] #> [1] 2.6 #> #> [[80]][[3]] #> [1] 3.5 #> #> [[80]][[4]] #> [1] 1 #> #> [[80]][[5]] #> [1] \"versicolor\" #> #> #> [[81]] #> [[81]][[1]] #> [1] 5.5 #> #> [[81]][[2]] #> [1] 2.4 #> #> [[81]][[3]] #> [1] 3.8 #> #> [[81]][[4]] #> [1] 1.1 #> #> [[81]][[5]] #> [1] \"versicolor\" #> #> #> [[82]] #> [[82]][[1]] #> [1] 5.5 #> #> [[82]][[2]] #> [1] 2.4 #> #> [[82]][[3]] #> [1] 3.7 #> #> [[82]][[4]] #> [1] 1 #> #> [[82]][[5]] #> [1] \"versicolor\" #> #> #> [[83]] #> [[83]][[1]] #> [1] 5.8 #> #> [[83]][[2]] #> [1] 2.7 #> #> [[83]][[3]] #> [1] 3.9 #> #> [[83]][[4]] #> [1] 1.2 #> #> [[83]][[5]] #> [1] \"versicolor\" #> #> #> [[84]] #> [[84]][[1]] #> [1] 6 #> #> [[84]][[2]] #> [1] 2.7 #> #> [[84]][[3]] #> [1] 5.1 #> #> [[84]][[4]] #> [1] 1.6 #> #> [[84]][[5]] #> [1] \"versicolor\" #> #> #> [[85]] #> [[85]][[1]] #> [1] 5.4 #> #> [[85]][[2]] #> [1] 3 #> #> [[85]][[3]] #> [1] 4.5 #> #> [[85]][[4]] #> [1] 1.5 #> #> [[85]][[5]] #> [1] \"versicolor\" #> #> #> [[86]] #> [[86]][[1]] #> [1] 6 #> #> [[86]][[2]] #> [1] 3.4 #> #> [[86]][[3]] #> [1] 4.5 #> #> [[86]][[4]] #> [1] 1.6 #> #> [[86]][[5]] #> [1] \"versicolor\" #> #> #> [[87]] #> [[87]][[1]] #> [1] 6.7 #> #> [[87]][[2]] #> [1] 3.1 #> #> [[87]][[3]] #> [1] 4.7 #> #> [[87]][[4]] #> [1] 1.5 #> #> [[87]][[5]] #> [1] \"versicolor\" #> #> #> [[88]] #> [[88]][[1]] #> [1] 6.3 #> #> [[88]][[2]] #> [1] 2.3 #> #> [[88]][[3]] #> [1] 4.4 #> #> [[88]][[4]] #> [1] 1.3 #> #> [[88]][[5]] #> [1] \"versicolor\" #> #> #> [[89]] #> [[89]][[1]] #> [1] 5.6 #> #> [[89]][[2]] #> [1] 3 #> #> [[89]][[3]] #> [1] 4.1 #> #> [[89]][[4]] #> [1] 1.3 #> #> [[89]][[5]] #> [1] \"versicolor\" #> #> #> [[90]] #> [[90]][[1]] #> [1] 5.5 #> #> [[90]][[2]] #> [1] 2.5 #> #> [[90]][[3]] #> [1] 4 #> #> [[90]][[4]] #> [1] 1.3 #> #> [[90]][[5]] #> [1] \"versicolor\" #> #> #> [[91]] #> [[91]][[1]] #> [1] 5.5 #> #> [[91]][[2]] #> [1] 2.6 #> #> [[91]][[3]] #> [1] 4.4 #> #> [[91]][[4]] #> [1] 1.2 #> #> [[91]][[5]] #> [1] \"versicolor\" #> #> #> [[92]] #> [[92]][[1]] #> [1] 6.1 #> #> [[92]][[2]] #> [1] 3 #> #> [[92]][[3]] #> [1] 4.6 #> #> [[92]][[4]] #> [1] 1.4 #> #> [[92]][[5]] #> [1] \"versicolor\" #> #> #> [[93]] #> [[93]][[1]] #> [1] 5.8 #> #> [[93]][[2]] #> [1] 2.6 #> #> [[93]][[3]] #> [1] 4 #> #> [[93]][[4]] #> [1] 1.2 #> #> [[93]][[5]] #> [1] \"versicolor\" #> #> #> [[94]] #> [[94]][[1]] #> [1] 5 #> #> [[94]][[2]] #> [1] 2.3 #> #> [[94]][[3]] #> [1] 3.3 #> #> [[94]][[4]] #> [1] 1 #> #> [[94]][[5]] #> [1] \"versicolor\" #> #> #> [[95]] #> [[95]][[1]] #> [1] 5.6 #> #> [[95]][[2]] #> [1] 2.7 #> #> [[95]][[3]] #> [1] 4.2 #> #> [[95]][[4]] #> [1] 1.3 #> #> [[95]][[5]] #> [1] \"versicolor\" #> #> #> [[96]] #> [[96]][[1]] #> [1] 5.7 #> #> [[96]][[2]] #> [1] 3 #> #> [[96]][[3]] #> [1] 4.2 #> #> [[96]][[4]] #> [1] 1.2 #> #> [[96]][[5]] #> [1] \"versicolor\" #> #> #> [[97]] #> [[97]][[1]] #> [1] 5.7 #> #> [[97]][[2]] #> [1] 2.9 #> #> [[97]][[3]] #> [1] 4.2 #> #> [[97]][[4]] #> [1] 1.3 #> #> [[97]][[5]] #> [1] \"versicolor\" #> #> #> [[98]] #> [[98]][[1]] #> [1] 6.2 #> #> [[98]][[2]] #> [1] 2.9 #> #> [[98]][[3]] #> [1] 4.3 #> #> [[98]][[4]] #> [1] 1.3 #> #> [[98]][[5]] #> [1] \"versicolor\" #> #> #> [[99]] #> [[99]][[1]] #> [1] 5.1 #> #> [[99]][[2]] #> [1] 2.5 #> #> [[99]][[3]] #> [1] 3 #> #> [[99]][[4]] #> [1] 1.1 #> #> [[99]][[5]] #> [1] \"versicolor\" #> #> #> [[100]] #> [[100]][[1]] #> [1] 5.7 #> #> [[100]][[2]] #> [1] 2.8 #> #> [[100]][[3]] #> [1] 4.1 #> #> [[100]][[4]] #> [1] 1.3 #> #> [[100]][[5]] #> [1] \"versicolor\" #> #> #> [[101]] #> [[101]][[1]] #> [1] 6.3 #> #> [[101]][[2]] #> [1] 3.3 #> #> [[101]][[3]] #> [1] 6 #> #> [[101]][[4]] #> [1] 2.5 #> #> [[101]][[5]] #> [1] \"virginica\" #> #> #> [[102]] #> [[102]][[1]] #> [1] 5.8 #> #> [[102]][[2]] #> [1] 2.7 #> #> [[102]][[3]] #> [1] 5.1 #> #> [[102]][[4]] #> [1] 1.9 #> #> [[102]][[5]] #> [1] \"virginica\" #> #> #> [[103]] #> [[103]][[1]] #> [1] 7.1 #> #> [[103]][[2]] #> [1] 3 #> #> [[103]][[3]] #> [1] 5.9 #> #> [[103]][[4]] #> [1] 2.1 #> #> [[103]][[5]] #> [1] \"virginica\" #> #> #> [[104]] #> [[104]][[1]] #> [1] 6.3 #> #> [[104]][[2]] #> [1] 2.9 #> #> [[104]][[3]] #> [1] 5.6 #> #> [[104]][[4]] #> [1] 1.8 #> #> [[104]][[5]] #> [1] \"virginica\" #> #> #> [[105]] #> [[105]][[1]] #> [1] 6.5 #> #> [[105]][[2]] #> [1] 3 #> #> [[105]][[3]] #> [1] 5.8 #> #> [[105]][[4]] #> [1] 2.2 #> #> [[105]][[5]] #> [1] \"virginica\" #> #> #> [[106]] #> [[106]][[1]] #> [1] 7.6 #> #> [[106]][[2]] #> [1] 3 #> #> [[106]][[3]] #> [1] 6.6 #> #> [[106]][[4]] #> [1] 2.1 #> #> [[106]][[5]] #> [1] \"virginica\" #> #> #> [[107]] #> [[107]][[1]] #> [1] 4.9 #> #> [[107]][[2]] #> [1] 2.5 #> #> [[107]][[3]] #> [1] 4.5 #> #> [[107]][[4]] #> [1] 1.7 #> #> [[107]][[5]] #> [1] \"virginica\" #> #> #> [[108]] #> [[108]][[1]] #> [1] 7.3 #> #> [[108]][[2]] #> [1] 2.9 #> #> [[108]][[3]] #> [1] 6.3 #> #> [[108]][[4]] #> [1] 1.8 #> #> [[108]][[5]] #> [1] \"virginica\" #> #> #> [[109]] #> [[109]][[1]] #> [1] 6.7 #> #> [[109]][[2]] #> [1] 2.5 #> #> [[109]][[3]] #> [1] 5.8 #> #> [[109]][[4]] #> [1] 1.8 #> #> [[109]][[5]] #> [1] \"virginica\" #> #> #> [[110]] #> [[110]][[1]] #> [1] 7.2 #> #> [[110]][[2]] #> [1] 3.6 #> #> [[110]][[3]] #> [1] 6.1 #> #> [[110]][[4]] #> [1] 2.5 #> #> [[110]][[5]] #> [1] \"virginica\" #> #> #> [[111]] #> [[111]][[1]] #> [1] 6.5 #> #> [[111]][[2]] #> [1] 3.2 #> #> [[111]][[3]] #> [1] 5.1 #> #> [[111]][[4]] #> [1] 2 #> #> [[111]][[5]] #> [1] \"virginica\" #> #> #> [[112]] #> [[112]][[1]] #> [1] 6.4 #> #> [[112]][[2]] #> [1] 2.7 #> #> [[112]][[3]] #> [1] 5.3 #> #> [[112]][[4]] #> [1] 1.9 #> #> [[112]][[5]] #> [1] \"virginica\" #> #> #> [[113]] #> [[113]][[1]] #> [1] 6.8 #> #> [[113]][[2]] #> [1] 3 #> #> [[113]][[3]] #> [1] 5.5 #> #> [[113]][[4]] #> [1] 2.1 #> #> [[113]][[5]] #> [1] \"virginica\" #> #> #> [[114]] #> [[114]][[1]] #> [1] 5.7 #> #> [[114]][[2]] #> [1] 2.5 #> #> [[114]][[3]] #> [1] 5 #> #> [[114]][[4]] #> [1] 2 #> #> [[114]][[5]] #> [1] \"virginica\" #> #> #> [[115]] #> [[115]][[1]] #> [1] 5.8 #> #> [[115]][[2]] #> [1] 2.8 #> #> [[115]][[3]] #> [1] 5.1 #> #> [[115]][[4]] #> [1] 2.4 #> #> [[115]][[5]] #> [1] \"virginica\" #> #> #> [[116]] #> [[116]][[1]] #> [1] 6.4 #> #> [[116]][[2]] #> [1] 3.2 #> #> [[116]][[3]] #> [1] 5.3 #> #> [[116]][[4]] #> [1] 2.3 #> #> [[116]][[5]] #> [1] \"virginica\" #> #> #> [[117]] #> [[117]][[1]] #> [1] 6.5 #> #> [[117]][[2]] #> [1] 3 #> #> [[117]][[3]] #> [1] 5.5 #> #> [[117]][[4]] #> [1] 1.8 #> #> [[117]][[5]] #> [1] \"virginica\" #> #> #> [[118]] #> [[118]][[1]] #> [1] 7.7 #> #> [[118]][[2]] #> [1] 3.8 #> #> [[118]][[3]] #> [1] 6.7 #> #> [[118]][[4]] #> [1] 2.2 #> #> [[118]][[5]] #> [1] \"virginica\" #> #> #> [[119]] #> [[119]][[1]] #> [1] 7.7 #> #> [[119]][[2]] #> [1] 2.6 #> #> [[119]][[3]] #> [1] 6.9 #> #> [[119]][[4]] #> [1] 2.3 #> #> [[119]][[5]] #> [1] \"virginica\" #> #> #> [[120]] #> [[120]][[1]] #> [1] 6 #> #> [[120]][[2]] #> [1] 2.2 #> #> [[120]][[3]] #> [1] 5 #> #> [[120]][[4]] #> [1] 1.5 #> #> [[120]][[5]] #> [1] \"virginica\" #> #> #> [[121]] #> [[121]][[1]] #> [1] 6.9 #> #> [[121]][[2]] #> [1] 3.2 #> #> [[121]][[3]] #> [1] 5.7 #> #> [[121]][[4]] #> [1] 2.3 #> #> [[121]][[5]] #> [1] \"virginica\" #> #> #> [[122]] #> [[122]][[1]] #> [1] 5.6 #> #> [[122]][[2]] #> [1] 2.8 #> #> [[122]][[3]] #> [1] 4.9 #> #> [[122]][[4]] #> [1] 2 #> #> [[122]][[5]] #> [1] \"virginica\" #> #> #> [[123]] #> [[123]][[1]] #> [1] 7.7 #> #> [[123]][[2]] #> [1] 2.8 #> #> [[123]][[3]] #> [1] 6.7 #> #> [[123]][[4]] #> [1] 2 #> #> [[123]][[5]] #> [1] \"virginica\" #> #> #> [[124]] #> [[124]][[1]] #> [1] 6.3 #> #> [[124]][[2]] #> [1] 2.7 #> #> [[124]][[3]] #> [1] 4.9 #> #> [[124]][[4]] #> [1] 1.8 #> #> [[124]][[5]] #> [1] \"virginica\" #> #> #> [[125]] #> [[125]][[1]] #> [1] 6.7 #> #> [[125]][[2]] #> [1] 3.3 #> #> [[125]][[3]] #> [1] 5.7 #> #> [[125]][[4]] #> [1] 2.1 #> #> [[125]][[5]] #> [1] \"virginica\" #> #> #> [[126]] #> [[126]][[1]] #> [1] 7.2 #> #> [[126]][[2]] #> [1] 3.2 #> #> [[126]][[3]] #> [1] 6 #> #> [[126]][[4]] #> [1] 1.8 #> #> [[126]][[5]] #> [1] \"virginica\" #> #> #> [[127]] #> [[127]][[1]] #> [1] 6.2 #> #> [[127]][[2]] #> [1] 2.8 #> #> [[127]][[3]] #> [1] 4.8 #> #> [[127]][[4]] #> [1] 1.8 #> #> [[127]][[5]] #> [1] \"virginica\" #> #> #> [[128]] #> [[128]][[1]] #> [1] 6.1 #> #> [[128]][[2]] #> [1] 3 #> #> [[128]][[3]] #> [1] 4.9 #> #> [[128]][[4]] #> [1] 1.8 #> #> [[128]][[5]] #> [1] \"virginica\" #> #> #> [[129]] #> [[129]][[1]] #> [1] 6.4 #> #> [[129]][[2]] #> [1] 2.8 #> #> [[129]][[3]] #> [1] 5.6 #> #> [[129]][[4]] #> [1] 2.1 #> #> [[129]][[5]] #> [1] \"virginica\" #> #> #> [[130]] #> [[130]][[1]] #> [1] 7.2 #> #> [[130]][[2]] #> [1] 3 #> #> [[130]][[3]] #> [1] 5.8 #> #> [[130]][[4]] #> [1] 1.6 #> #> [[130]][[5]] #> [1] \"virginica\" #> #> #> [[131]] #> [[131]][[1]] #> [1] 7.4 #> #> [[131]][[2]] #> [1] 2.8 #> #> [[131]][[3]] #> [1] 6.1 #> #> [[131]][[4]] #> [1] 1.9 #> #> [[131]][[5]] #> [1] \"virginica\" #> #> #> [[132]] #> [[132]][[1]] #> [1] 7.9 #> #> [[132]][[2]] #> [1] 3.8 #> #> [[132]][[3]] #> [1] 6.4 #> #> [[132]][[4]] #> [1] 2 #> #> [[132]][[5]] #> [1] \"virginica\" #> #> #> [[133]] #> [[133]][[1]] #> [1] 6.4 #> #> [[133]][[2]] #> [1] 2.8 #> #> [[133]][[3]] #> [1] 5.6 #> #> [[133]][[4]] #> [1] 2.2 #> #> [[133]][[5]] #> [1] \"virginica\" #> #> #> [[134]] #> [[134]][[1]] #> [1] 6.3 #> #> [[134]][[2]] #> [1] 2.8 #> #> [[134]][[3]] #> [1] 5.1 #> #> [[134]][[4]] #> [1] 1.5 #> #> [[134]][[5]] #> [1] \"virginica\" #> #> #> [[135]] #> [[135]][[1]] #> [1] 6.1 #> #> [[135]][[2]] #> [1] 2.6 #> #> [[135]][[3]] #> [1] 5.6 #> #> [[135]][[4]] #> [1] 1.4 #> #> [[135]][[5]] #> [1] \"virginica\" #> #> #> [[136]] #> [[136]][[1]] #> [1] 7.7 #> #> [[136]][[2]] #> [1] 3 #> #> [[136]][[3]] #> [1] 6.1 #> #> [[136]][[4]] #> [1] 2.3 #> #> [[136]][[5]] #> [1] \"virginica\" #> #> #> [[137]] #> [[137]][[1]] #> [1] 6.3 #> #> [[137]][[2]] #> [1] 3.4 #> #> [[137]][[3]] #> [1] 5.6 #> #> [[137]][[4]] #> [1] 2.4 #> #> [[137]][[5]] #> [1] \"virginica\" #> #> #> [[138]] #> [[138]][[1]] #> [1] 6.4 #> #> [[138]][[2]] #> [1] 3.1 #> #> [[138]][[3]] #> [1] 5.5 #> #> [[138]][[4]] #> [1] 1.8 #> #> [[138]][[5]] #> [1] \"virginica\" #> #> #> [[139]] #> [[139]][[1]] #> [1] 6 #> #> [[139]][[2]] #> [1] 3 #> #> [[139]][[3]] #> [1] 4.8 #> #> [[139]][[4]] #> [1] 1.8 #> #> [[139]][[5]] #> [1] \"virginica\" #> #> #> [[140]] #> [[140]][[1]] #> [1] 6.9 #> #> [[140]][[2]] #> [1] 3.1 #> #> [[140]][[3]] #> [1] 5.4 #> #> [[140]][[4]] #> [1] 2.1 #> #> [[140]][[5]] #> [1] \"virginica\" #> #> #> [[141]] #> [[141]][[1]] #> [1] 6.7 #> #> [[141]][[2]] #> [1] 3.1 #> #> [[141]][[3]] #> [1] 5.6 #> #> [[141]][[4]] #> [1] 2.4 #> #> [[141]][[5]] #> [1] \"virginica\" #> #> #> [[142]] #> [[142]][[1]] #> [1] 6.9 #> #> [[142]][[2]] #> [1] 3.1 #> #> [[142]][[3]] #> [1] 5.1 #> #> [[142]][[4]] #> [1] 2.3 #> #> [[142]][[5]] #> [1] \"virginica\" #> #> #> [[143]] #> [[143]][[1]] #> [1] 5.8 #> #> [[143]][[2]] #> [1] 2.7 #> #> [[143]][[3]] #> [1] 5.1 #> #> [[143]][[4]] #> [1] 1.9 #> #> [[143]][[5]] #> [1] \"virginica\" #> #> #> [[144]] #> [[144]][[1]] #> [1] 6.8 #> #> [[144]][[2]] #> [1] 3.2 #> #> [[144]][[3]] #> [1] 5.9 #> #> [[144]][[4]] #> [1] 2.3 #> #> [[144]][[5]] #> [1] \"virginica\" #> #> #> [[145]] #> [[145]][[1]] #> [1] 6.7 #> #> [[145]][[2]] #> [1] 3.3 #> #> [[145]][[3]] #> [1] 5.7 #> #> [[145]][[4]] #> [1] 2.5 #> #> [[145]][[5]] #> [1] \"virginica\" #> #> #> [[146]] #> [[146]][[1]] #> [1] 6.7 #> #> [[146]][[2]] #> [1] 3 #> #> [[146]][[3]] #> [1] 5.2 #> #> [[146]][[4]] #> [1] 2.3 #> #> [[146]][[5]] #> [1] \"virginica\" #> #> #> [[147]] #> [[147]][[1]] #> [1] 6.3 #> #> [[147]][[2]] #> [1] 2.5 #> #> [[147]][[3]] #> [1] 5 #> #> [[147]][[4]] #> [1] 1.9 #> #> [[147]][[5]] #> [1] \"virginica\" #> #> #> [[148]] #> [[148]][[1]] #> [1] 6.5 #> #> [[148]][[2]] #> [1] 3 #> #> [[148]][[3]] #> [1] 5.2 #> #> [[148]][[4]] #> [1] 2 #> #> [[148]][[5]] #> [1] \"virginica\" #> #> #> [[149]] #> [[149]][[1]] #> [1] 6.2 #> #> [[149]][[2]] #> [1] 3.4 #> #> [[149]][[3]] #> [1] 5.4 #> #> [[149]][[4]] #> [1] 2.3 #> #> [[149]][[5]] #> [1] \"virginica\" #> #> #> [[150]] #> [[150]][[1]] #> [1] 5.9 #> #> [[150]][[2]] #> [1] 3 #> #> [[150]][[3]] #> [1] 5.1 #> #> [[150]][[4]] #> [1] 1.8 #> #> [[150]][[5]] #> [1] \"virginica\" #> #> # Keep variables names parse_df(iris[, 1:2], add_names = TRUE) #> [[1]] #> [[1]]$Sepal.Length #> [1] 5.1 #> #> [[1]]$Sepal.Width #> [1] 3.5 #> #> #> [[2]] #> [[2]]$Sepal.Length #> [1] 4.9 #> #> [[2]]$Sepal.Width #> [1] 3 #> #> #> [[3]] #> [[3]]$Sepal.Length #> [1] 4.7 #> #> [[3]]$Sepal.Width #> [1] 3.2 #> #> #> [[4]] #> [[4]]$Sepal.Length #> [1] 4.6 #> #> [[4]]$Sepal.Width #> [1] 3.1 #> #> #> [[5]] #> [[5]]$Sepal.Length #> [1] 5 #> #> [[5]]$Sepal.Width #> [1] 3.6 #> #> #> [[6]] #> [[6]]$Sepal.Length #> [1] 5.4 #> #> [[6]]$Sepal.Width #> [1] 3.9 #> #> #> [[7]] #> [[7]]$Sepal.Length #> [1] 4.6 #> #> [[7]]$Sepal.Width #> [1] 3.4 #> #> #> [[8]] #> [[8]]$Sepal.Length #> [1] 5 #> #> [[8]]$Sepal.Width #> [1] 3.4 #> #> #> [[9]] #> [[9]]$Sepal.Length #> [1] 4.4 #> #> [[9]]$Sepal.Width #> [1] 2.9 #> #> #> [[10]] #> [[10]]$Sepal.Length #> [1] 4.9 #> #> [[10]]$Sepal.Width #> [1] 3.1 #> #> #> [[11]] #> [[11]]$Sepal.Length #> [1] 5.4 #> #> [[11]]$Sepal.Width #> [1] 3.7 #> #> #> [[12]] #> [[12]]$Sepal.Length #> [1] 4.8 #> #> [[12]]$Sepal.Width #> [1] 3.4 #> #> #> [[13]] #> [[13]]$Sepal.Length #> [1] 4.8 #> #> [[13]]$Sepal.Width #> [1] 3 #> #> #> [[14]] #> [[14]]$Sepal.Length #> [1] 4.3 #> #> [[14]]$Sepal.Width #> [1] 3 #> #> #> [[15]] #> [[15]]$Sepal.Length #> [1] 5.8 #> #> [[15]]$Sepal.Width #> [1] 4 #> #> #> [[16]] #> [[16]]$Sepal.Length #> [1] 5.7 #> #> [[16]]$Sepal.Width #> [1] 4.4 #> #> #> [[17]] #> [[17]]$Sepal.Length #> [1] 5.4 #> #> [[17]]$Sepal.Width #> [1] 3.9 #> #> #> [[18]] #> [[18]]$Sepal.Length #> [1] 5.1 #> #> [[18]]$Sepal.Width #> [1] 3.5 #> #> #> [[19]] #> [[19]]$Sepal.Length #> [1] 5.7 #> #> [[19]]$Sepal.Width #> [1] 3.8 #> #> #> [[20]] #> [[20]]$Sepal.Length #> [1] 5.1 #> #> [[20]]$Sepal.Width #> [1] 3.8 #> #> #> [[21]] #> [[21]]$Sepal.Length #> [1] 5.4 #> #> [[21]]$Sepal.Width #> [1] 3.4 #> #> #> [[22]] #> [[22]]$Sepal.Length #> [1] 5.1 #> #> [[22]]$Sepal.Width #> [1] 3.7 #> #> #> [[23]] #> [[23]]$Sepal.Length #> [1] 4.6 #> #> [[23]]$Sepal.Width #> [1] 3.6 #> #> #> [[24]] #> [[24]]$Sepal.Length #> [1] 5.1 #> #> [[24]]$Sepal.Width #> [1] 3.3 #> #> #> [[25]] #> [[25]]$Sepal.Length #> [1] 4.8 #> #> [[25]]$Sepal.Width #> [1] 3.4 #> #> #> [[26]] #> [[26]]$Sepal.Length #> [1] 5 #> #> [[26]]$Sepal.Width #> [1] 3 #> #> #> [[27]] #> [[27]]$Sepal.Length #> [1] 5 #> #> [[27]]$Sepal.Width #> [1] 3.4 #> #> #> [[28]] #> [[28]]$Sepal.Length #> [1] 5.2 #> #> [[28]]$Sepal.Width #> [1] 3.5 #> #> #> [[29]] #> [[29]]$Sepal.Length #> [1] 5.2 #> #> [[29]]$Sepal.Width #> [1] 3.4 #> #> #> [[30]] #> [[30]]$Sepal.Length #> [1] 4.7 #> #> [[30]]$Sepal.Width #> [1] 3.2 #> #> #> [[31]] #> [[31]]$Sepal.Length #> [1] 4.8 #> #> [[31]]$Sepal.Width #> [1] 3.1 #> #> #> [[32]] #> [[32]]$Sepal.Length #> [1] 5.4 #> #> [[32]]$Sepal.Width #> [1] 3.4 #> #> #> [[33]] #> [[33]]$Sepal.Length #> [1] 5.2 #> #> [[33]]$Sepal.Width #> [1] 4.1 #> #> #> [[34]] #> [[34]]$Sepal.Length #> [1] 5.5 #> #> [[34]]$Sepal.Width #> [1] 4.2 #> #> #> [[35]] #> [[35]]$Sepal.Length #> [1] 4.9 #> #> [[35]]$Sepal.Width #> [1] 3.1 #> #> #> [[36]] #> [[36]]$Sepal.Length #> [1] 5 #> #> [[36]]$Sepal.Width #> [1] 3.2 #> #> #> [[37]] #> [[37]]$Sepal.Length #> [1] 5.5 #> #> [[37]]$Sepal.Width #> [1] 3.5 #> #> #> [[38]] #> [[38]]$Sepal.Length #> [1] 4.9 #> #> [[38]]$Sepal.Width #> [1] 3.6 #> #> #> [[39]] #> [[39]]$Sepal.Length #> [1] 4.4 #> #> [[39]]$Sepal.Width #> [1] 3 #> #> #> [[40]] #> [[40]]$Sepal.Length #> [1] 5.1 #> #> [[40]]$Sepal.Width #> [1] 3.4 #> #> #> [[41]] #> [[41]]$Sepal.Length #> [1] 5 #> #> [[41]]$Sepal.Width #> [1] 3.5 #> #> #> [[42]] #> [[42]]$Sepal.Length #> [1] 4.5 #> #> [[42]]$Sepal.Width #> [1] 2.3 #> #> #> [[43]] #> [[43]]$Sepal.Length #> [1] 4.4 #> #> [[43]]$Sepal.Width #> [1] 3.2 #> #> #> [[44]] #> [[44]]$Sepal.Length #> [1] 5 #> #> [[44]]$Sepal.Width #> [1] 3.5 #> #> #> [[45]] #> [[45]]$Sepal.Length #> [1] 5.1 #> #> [[45]]$Sepal.Width #> [1] 3.8 #> #> #> [[46]] #> [[46]]$Sepal.Length #> [1] 4.8 #> #> [[46]]$Sepal.Width #> [1] 3 #> #> #> [[47]] #> [[47]]$Sepal.Length #> [1] 5.1 #> #> [[47]]$Sepal.Width #> [1] 3.8 #> #> #> [[48]] #> [[48]]$Sepal.Length #> [1] 4.6 #> #> [[48]]$Sepal.Width #> [1] 3.2 #> #> #> [[49]] #> [[49]]$Sepal.Length #> [1] 5.3 #> #> [[49]]$Sepal.Width #> [1] 3.7 #> #> #> [[50]] #> [[50]]$Sepal.Length #> [1] 5 #> #> [[50]]$Sepal.Width #> [1] 3.3 #> #> #> [[51]] #> [[51]]$Sepal.Length #> [1] 7 #> #> [[51]]$Sepal.Width #> [1] 3.2 #> #> #> [[52]] #> [[52]]$Sepal.Length #> [1] 6.4 #> #> [[52]]$Sepal.Width #> [1] 3.2 #> #> #> [[53]] #> [[53]]$Sepal.Length #> [1] 6.9 #> #> [[53]]$Sepal.Width #> [1] 3.1 #> #> #> [[54]] #> [[54]]$Sepal.Length #> [1] 5.5 #> #> [[54]]$Sepal.Width #> [1] 2.3 #> #> #> [[55]] #> [[55]]$Sepal.Length #> [1] 6.5 #> #> [[55]]$Sepal.Width #> [1] 2.8 #> #> #> [[56]] #> [[56]]$Sepal.Length #> [1] 5.7 #> #> [[56]]$Sepal.Width #> [1] 2.8 #> #> #> [[57]] #> [[57]]$Sepal.Length #> [1] 6.3 #> #> [[57]]$Sepal.Width #> [1] 3.3 #> #> #> [[58]] #> [[58]]$Sepal.Length #> [1] 4.9 #> #> [[58]]$Sepal.Width #> [1] 2.4 #> #> #> [[59]] #> [[59]]$Sepal.Length #> [1] 6.6 #> #> [[59]]$Sepal.Width #> [1] 2.9 #> #> #> [[60]] #> [[60]]$Sepal.Length #> [1] 5.2 #> #> [[60]]$Sepal.Width #> [1] 2.7 #> #> #> [[61]] #> [[61]]$Sepal.Length #> [1] 5 #> #> [[61]]$Sepal.Width #> [1] 2 #> #> #> [[62]] #> [[62]]$Sepal.Length #> [1] 5.9 #> #> [[62]]$Sepal.Width #> [1] 3 #> #> #> [[63]] #> [[63]]$Sepal.Length #> [1] 6 #> #> [[63]]$Sepal.Width #> [1] 2.2 #> #> #> [[64]] #> [[64]]$Sepal.Length #> [1] 6.1 #> #> [[64]]$Sepal.Width #> [1] 2.9 #> #> #> [[65]] #> [[65]]$Sepal.Length #> [1] 5.6 #> #> [[65]]$Sepal.Width #> [1] 2.9 #> #> #> [[66]] #> [[66]]$Sepal.Length #> [1] 6.7 #> #> [[66]]$Sepal.Width #> [1] 3.1 #> #> #> [[67]] #> [[67]]$Sepal.Length #> [1] 5.6 #> #> [[67]]$Sepal.Width #> [1] 3 #> #> #> [[68]] #> [[68]]$Sepal.Length #> [1] 5.8 #> #> [[68]]$Sepal.Width #> [1] 2.7 #> #> #> [[69]] #> [[69]]$Sepal.Length #> [1] 6.2 #> #> [[69]]$Sepal.Width #> [1] 2.2 #> #> #> [[70]] #> [[70]]$Sepal.Length #> [1] 5.6 #> #> [[70]]$Sepal.Width #> [1] 2.5 #> #> #> [[71]] #> [[71]]$Sepal.Length #> [1] 5.9 #> #> [[71]]$Sepal.Width #> [1] 3.2 #> #> #> [[72]] #> [[72]]$Sepal.Length #> [1] 6.1 #> #> [[72]]$Sepal.Width #> [1] 2.8 #> #> #> [[73]] #> [[73]]$Sepal.Length #> [1] 6.3 #> #> [[73]]$Sepal.Width #> [1] 2.5 #> #> #> [[74]] #> [[74]]$Sepal.Length #> [1] 6.1 #> #> [[74]]$Sepal.Width #> [1] 2.8 #> #> #> [[75]] #> [[75]]$Sepal.Length #> [1] 6.4 #> #> [[75]]$Sepal.Width #> [1] 2.9 #> #> #> [[76]] #> [[76]]$Sepal.Length #> [1] 6.6 #> #> [[76]]$Sepal.Width #> [1] 3 #> #> #> [[77]] #> [[77]]$Sepal.Length #> [1] 6.8 #> #> [[77]]$Sepal.Width #> [1] 2.8 #> #> #> [[78]] #> [[78]]$Sepal.Length #> [1] 6.7 #> #> [[78]]$Sepal.Width #> [1] 3 #> #> #> [[79]] #> [[79]]$Sepal.Length #> [1] 6 #> #> [[79]]$Sepal.Width #> [1] 2.9 #> #> #> [[80]] #> [[80]]$Sepal.Length #> [1] 5.7 #> #> [[80]]$Sepal.Width #> [1] 2.6 #> #> #> [[81]] #> [[81]]$Sepal.Length #> [1] 5.5 #> #> [[81]]$Sepal.Width #> [1] 2.4 #> #> #> [[82]] #> [[82]]$Sepal.Length #> [1] 5.5 #> #> [[82]]$Sepal.Width #> [1] 2.4 #> #> #> [[83]] #> [[83]]$Sepal.Length #> [1] 5.8 #> #> [[83]]$Sepal.Width #> [1] 2.7 #> #> #> [[84]] #> [[84]]$Sepal.Length #> [1] 6 #> #> [[84]]$Sepal.Width #> [1] 2.7 #> #> #> [[85]] #> [[85]]$Sepal.Length #> [1] 5.4 #> #> [[85]]$Sepal.Width #> [1] 3 #> #> #> [[86]] #> [[86]]$Sepal.Length #> [1] 6 #> #> [[86]]$Sepal.Width #> [1] 3.4 #> #> #> [[87]] #> [[87]]$Sepal.Length #> [1] 6.7 #> #> [[87]]$Sepal.Width #> [1] 3.1 #> #> #> [[88]] #> [[88]]$Sepal.Length #> [1] 6.3 #> #> [[88]]$Sepal.Width #> [1] 2.3 #> #> #> [[89]] #> [[89]]$Sepal.Length #> [1] 5.6 #> #> [[89]]$Sepal.Width #> [1] 3 #> #> #> [[90]] #> [[90]]$Sepal.Length #> [1] 5.5 #> #> [[90]]$Sepal.Width #> [1] 2.5 #> #> #> [[91]] #> [[91]]$Sepal.Length #> [1] 5.5 #> #> [[91]]$Sepal.Width #> [1] 2.6 #> #> #> [[92]] #> [[92]]$Sepal.Length #> [1] 6.1 #> #> [[92]]$Sepal.Width #> [1] 3 #> #> #> [[93]] #> [[93]]$Sepal.Length #> [1] 5.8 #> #> [[93]]$Sepal.Width #> [1] 2.6 #> #> #> [[94]] #> [[94]]$Sepal.Length #> [1] 5 #> #> [[94]]$Sepal.Width #> [1] 2.3 #> #> #> [[95]] #> [[95]]$Sepal.Length #> [1] 5.6 #> #> [[95]]$Sepal.Width #> [1] 2.7 #> #> #> [[96]] #> [[96]]$Sepal.Length #> [1] 5.7 #> #> [[96]]$Sepal.Width #> [1] 3 #> #> #> [[97]] #> [[97]]$Sepal.Length #> [1] 5.7 #> #> [[97]]$Sepal.Width #> [1] 2.9 #> #> #> [[98]] #> [[98]]$Sepal.Length #> [1] 6.2 #> #> [[98]]$Sepal.Width #> [1] 2.9 #> #> #> [[99]] #> [[99]]$Sepal.Length #> [1] 5.1 #> #> [[99]]$Sepal.Width #> [1] 2.5 #> #> #> [[100]] #> [[100]]$Sepal.Length #> [1] 5.7 #> #> [[100]]$Sepal.Width #> [1] 2.8 #> #> #> [[101]] #> [[101]]$Sepal.Length #> [1] 6.3 #> #> [[101]]$Sepal.Width #> [1] 3.3 #> #> #> [[102]] #> [[102]]$Sepal.Length #> [1] 5.8 #> #> [[102]]$Sepal.Width #> [1] 2.7 #> #> #> [[103]] #> [[103]]$Sepal.Length #> [1] 7.1 #> #> [[103]]$Sepal.Width #> [1] 3 #> #> #> [[104]] #> [[104]]$Sepal.Length #> [1] 6.3 #> #> [[104]]$Sepal.Width #> [1] 2.9 #> #> #> [[105]] #> [[105]]$Sepal.Length #> [1] 6.5 #> #> [[105]]$Sepal.Width #> [1] 3 #> #> #> [[106]] #> [[106]]$Sepal.Length #> [1] 7.6 #> #> [[106]]$Sepal.Width #> [1] 3 #> #> #> [[107]] #> [[107]]$Sepal.Length #> [1] 4.9 #> #> [[107]]$Sepal.Width #> [1] 2.5 #> #> #> [[108]] #> [[108]]$Sepal.Length #> [1] 7.3 #> #> [[108]]$Sepal.Width #> [1] 2.9 #> #> #> [[109]] #> [[109]]$Sepal.Length #> [1] 6.7 #> #> [[109]]$Sepal.Width #> [1] 2.5 #> #> #> [[110]] #> [[110]]$Sepal.Length #> [1] 7.2 #> #> [[110]]$Sepal.Width #> [1] 3.6 #> #> #> [[111]] #> [[111]]$Sepal.Length #> [1] 6.5 #> #> [[111]]$Sepal.Width #> [1] 3.2 #> #> #> [[112]] #> [[112]]$Sepal.Length #> [1] 6.4 #> #> [[112]]$Sepal.Width #> [1] 2.7 #> #> #> [[113]] #> [[113]]$Sepal.Length #> [1] 6.8 #> #> [[113]]$Sepal.Width #> [1] 3 #> #> #> [[114]] #> [[114]]$Sepal.Length #> [1] 5.7 #> #> [[114]]$Sepal.Width #> [1] 2.5 #> #> #> [[115]] #> [[115]]$Sepal.Length #> [1] 5.8 #> #> [[115]]$Sepal.Width #> [1] 2.8 #> #> #> [[116]] #> [[116]]$Sepal.Length #> [1] 6.4 #> #> [[116]]$Sepal.Width #> [1] 3.2 #> #> #> [[117]] #> [[117]]$Sepal.Length #> [1] 6.5 #> #> [[117]]$Sepal.Width #> [1] 3 #> #> #> [[118]] #> [[118]]$Sepal.Length #> [1] 7.7 #> #> [[118]]$Sepal.Width #> [1] 3.8 #> #> #> [[119]] #> [[119]]$Sepal.Length #> [1] 7.7 #> #> [[119]]$Sepal.Width #> [1] 2.6 #> #> #> [[120]] #> [[120]]$Sepal.Length #> [1] 6 #> #> [[120]]$Sepal.Width #> [1] 2.2 #> #> #> [[121]] #> [[121]]$Sepal.Length #> [1] 6.9 #> #> [[121]]$Sepal.Width #> [1] 3.2 #> #> #> [[122]] #> [[122]]$Sepal.Length #> [1] 5.6 #> #> [[122]]$Sepal.Width #> [1] 2.8 #> #> #> [[123]] #> [[123]]$Sepal.Length #> [1] 7.7 #> #> [[123]]$Sepal.Width #> [1] 2.8 #> #> #> [[124]] #> [[124]]$Sepal.Length #> [1] 6.3 #> #> [[124]]$Sepal.Width #> [1] 2.7 #> #> #> [[125]] #> [[125]]$Sepal.Length #> [1] 6.7 #> #> [[125]]$Sepal.Width #> [1] 3.3 #> #> #> [[126]] #> [[126]]$Sepal.Length #> [1] 7.2 #> #> [[126]]$Sepal.Width #> [1] 3.2 #> #> #> [[127]] #> [[127]]$Sepal.Length #> [1] 6.2 #> #> [[127]]$Sepal.Width #> [1] 2.8 #> #> #> [[128]] #> [[128]]$Sepal.Length #> [1] 6.1 #> #> [[128]]$Sepal.Width #> [1] 3 #> #> #> [[129]] #> [[129]]$Sepal.Length #> [1] 6.4 #> #> [[129]]$Sepal.Width #> [1] 2.8 #> #> #> [[130]] #> [[130]]$Sepal.Length #> [1] 7.2 #> #> [[130]]$Sepal.Width #> [1] 3 #> #> #> [[131]] #> [[131]]$Sepal.Length #> [1] 7.4 #> #> [[131]]$Sepal.Width #> [1] 2.8 #> #> #> [[132]] #> [[132]]$Sepal.Length #> [1] 7.9 #> #> [[132]]$Sepal.Width #> [1] 3.8 #> #> #> [[133]] #> [[133]]$Sepal.Length #> [1] 6.4 #> #> [[133]]$Sepal.Width #> [1] 2.8 #> #> #> [[134]] #> [[134]]$Sepal.Length #> [1] 6.3 #> #> [[134]]$Sepal.Width #> [1] 2.8 #> #> #> [[135]] #> [[135]]$Sepal.Length #> [1] 6.1 #> #> [[135]]$Sepal.Width #> [1] 2.6 #> #> #> [[136]] #> [[136]]$Sepal.Length #> [1] 7.7 #> #> [[136]]$Sepal.Width #> [1] 3 #> #> #> [[137]] #> [[137]]$Sepal.Length #> [1] 6.3 #> #> [[137]]$Sepal.Width #> [1] 3.4 #> #> #> [[138]] #> [[138]]$Sepal.Length #> [1] 6.4 #> #> [[138]]$Sepal.Width #> [1] 3.1 #> #> #> [[139]] #> [[139]]$Sepal.Length #> [1] 6 #> #> [[139]]$Sepal.Width #> [1] 3 #> #> #> [[140]] #> [[140]]$Sepal.Length #> [1] 6.9 #> #> [[140]]$Sepal.Width #> [1] 3.1 #> #> #> [[141]] #> [[141]]$Sepal.Length #> [1] 6.7 #> #> [[141]]$Sepal.Width #> [1] 3.1 #> #> #> [[142]] #> [[142]]$Sepal.Length #> [1] 6.9 #> #> [[142]]$Sepal.Width #> [1] 3.1 #> #> #> [[143]] #> [[143]]$Sepal.Length #> [1] 5.8 #> #> [[143]]$Sepal.Width #> [1] 2.7 #> #> #> [[144]] #> [[144]]$Sepal.Length #> [1] 6.8 #> #> [[144]]$Sepal.Width #> [1] 3.2 #> #> #> [[145]] #> [[145]]$Sepal.Length #> [1] 6.7 #> #> [[145]]$Sepal.Width #> [1] 3.3 #> #> #> [[146]] #> [[146]]$Sepal.Length #> [1] 6.7 #> #> [[146]]$Sepal.Width #> [1] 3 #> #> #> [[147]] #> [[147]]$Sepal.Length #> [1] 6.3 #> #> [[147]]$Sepal.Width #> [1] 2.5 #> #> #> [[148]] #> [[148]]$Sepal.Length #> [1] 6.5 #> #> [[148]]$Sepal.Width #> [1] 3 #> #> #> [[149]] #> [[149]]$Sepal.Length #> [1] 6.2 #> #> [[149]]$Sepal.Width #> [1] 3.4 #> #> #> [[150]] #> [[150]]$Sepal.Length #> [1] 5.9 #> #> [[150]]$Sepal.Width #> [1] 3 #> #> # Use custom names parse_df(iris[, 1:2], add_names = c(\"x\", \"y\")) #> [[1]] #> [[1]]$x #> [1] 5.1 #> #> [[1]]$y #> [1] 3.5 #> #> #> [[2]] #> [[2]]$x #> [1] 4.9 #> #> [[2]]$y #> [1] 3 #> #> #> [[3]] #> [[3]]$x #> [1] 4.7 #> #> [[3]]$y #> [1] 3.2 #> #> #> [[4]] #> [[4]]$x #> [1] 4.6 #> #> [[4]]$y #> [1] 3.1 #> #> #> [[5]] #> [[5]]$x #> [1] 5 #> #> [[5]]$y #> [1] 3.6 #> #> #> [[6]] #> [[6]]$x #> [1] 5.4 #> #> [[6]]$y #> [1] 3.9 #> #> #> [[7]] #> [[7]]$x #> [1] 4.6 #> #> [[7]]$y #> [1] 3.4 #> #> #> [[8]] #> [[8]]$x #> [1] 5 #> #> [[8]]$y #> [1] 3.4 #> #> #> [[9]] #> [[9]]$x #> [1] 4.4 #> #> [[9]]$y #> [1] 2.9 #> #> #> [[10]] #> [[10]]$x #> [1] 4.9 #> #> [[10]]$y #> [1] 3.1 #> #> #> [[11]] #> [[11]]$x #> [1] 5.4 #> #> [[11]]$y #> [1] 3.7 #> #> #> [[12]] #> [[12]]$x #> [1] 4.8 #> #> [[12]]$y #> [1] 3.4 #> #> #> [[13]] #> [[13]]$x #> [1] 4.8 #> #> [[13]]$y #> [1] 3 #> #> #> [[14]] #> [[14]]$x #> [1] 4.3 #> #> [[14]]$y #> [1] 3 #> #> #> [[15]] #> [[15]]$x #> [1] 5.8 #> #> [[15]]$y #> [1] 4 #> #> #> [[16]] #> [[16]]$x #> [1] 5.7 #> #> [[16]]$y #> [1] 4.4 #> #> #> [[17]] #> [[17]]$x #> [1] 5.4 #> #> [[17]]$y #> [1] 3.9 #> #> #> [[18]] #> [[18]]$x #> [1] 5.1 #> #> [[18]]$y #> [1] 3.5 #> #> #> [[19]] #> [[19]]$x #> [1] 5.7 #> #> [[19]]$y #> [1] 3.8 #> #> #> [[20]] #> [[20]]$x #> [1] 5.1 #> #> [[20]]$y #> [1] 3.8 #> #> #> [[21]] #> [[21]]$x #> [1] 5.4 #> #> [[21]]$y #> [1] 3.4 #> #> #> [[22]] #> [[22]]$x #> [1] 5.1 #> #> [[22]]$y #> [1] 3.7 #> #> #> [[23]] #> [[23]]$x #> [1] 4.6 #> #> [[23]]$y #> [1] 3.6 #> #> #> [[24]] #> [[24]]$x #> [1] 5.1 #> #> [[24]]$y #> [1] 3.3 #> #> #> [[25]] #> [[25]]$x #> [1] 4.8 #> #> [[25]]$y #> [1] 3.4 #> #> #> [[26]] #> [[26]]$x #> [1] 5 #> #> [[26]]$y #> [1] 3 #> #> #> [[27]] #> [[27]]$x #> [1] 5 #> #> [[27]]$y #> [1] 3.4 #> #> #> [[28]] #> [[28]]$x #> [1] 5.2 #> #> [[28]]$y #> [1] 3.5 #> #> #> [[29]] #> [[29]]$x #> [1] 5.2 #> #> [[29]]$y #> [1] 3.4 #> #> #> [[30]] #> [[30]]$x #> [1] 4.7 #> #> [[30]]$y #> [1] 3.2 #> #> #> [[31]] #> [[31]]$x #> [1] 4.8 #> #> [[31]]$y #> [1] 3.1 #> #> #> [[32]] #> [[32]]$x #> [1] 5.4 #> #> [[32]]$y #> [1] 3.4 #> #> #> [[33]] #> [[33]]$x #> [1] 5.2 #> #> [[33]]$y #> [1] 4.1 #> #> #> [[34]] #> [[34]]$x #> [1] 5.5 #> #> [[34]]$y #> [1] 4.2 #> #> #> [[35]] #> [[35]]$x #> [1] 4.9 #> #> [[35]]$y #> [1] 3.1 #> #> #> [[36]] #> [[36]]$x #> [1] 5 #> #> [[36]]$y #> [1] 3.2 #> #> #> [[37]] #> [[37]]$x #> [1] 5.5 #> #> [[37]]$y #> [1] 3.5 #> #> #> [[38]] #> [[38]]$x #> [1] 4.9 #> #> [[38]]$y #> [1] 3.6 #> #> #> [[39]] #> [[39]]$x #> [1] 4.4 #> #> [[39]]$y #> [1] 3 #> #> #> [[40]] #> [[40]]$x #> [1] 5.1 #> #> [[40]]$y #> [1] 3.4 #> #> #> [[41]] #> [[41]]$x #> [1] 5 #> #> [[41]]$y #> [1] 3.5 #> #> #> [[42]] #> [[42]]$x #> [1] 4.5 #> #> [[42]]$y #> [1] 2.3 #> #> #> [[43]] #> [[43]]$x #> [1] 4.4 #> #> [[43]]$y #> [1] 3.2 #> #> #> [[44]] #> [[44]]$x #> [1] 5 #> #> [[44]]$y #> [1] 3.5 #> #> #> [[45]] #> [[45]]$x #> [1] 5.1 #> #> [[45]]$y #> [1] 3.8 #> #> #> [[46]] #> [[46]]$x #> [1] 4.8 #> #> [[46]]$y #> [1] 3 #> #> #> [[47]] #> [[47]]$x #> [1] 5.1 #> #> [[47]]$y #> [1] 3.8 #> #> #> [[48]] #> [[48]]$x #> [1] 4.6 #> #> [[48]]$y #> [1] 3.2 #> #> #> [[49]] #> [[49]]$x #> [1] 5.3 #> #> [[49]]$y #> [1] 3.7 #> #> #> [[50]] #> [[50]]$x #> [1] 5 #> #> [[50]]$y #> [1] 3.3 #> #> #> [[51]] #> [[51]]$x #> [1] 7 #> #> [[51]]$y #> [1] 3.2 #> #> #> [[52]] #> [[52]]$x #> [1] 6.4 #> #> [[52]]$y #> [1] 3.2 #> #> #> [[53]] #> [[53]]$x #> [1] 6.9 #> #> [[53]]$y #> [1] 3.1 #> #> #> [[54]] #> [[54]]$x #> [1] 5.5 #> #> [[54]]$y #> [1] 2.3 #> #> #> [[55]] #> [[55]]$x #> [1] 6.5 #> #> [[55]]$y #> [1] 2.8 #> #> #> [[56]] #> [[56]]$x #> [1] 5.7 #> #> [[56]]$y #> [1] 2.8 #> #> #> [[57]] #> [[57]]$x #> [1] 6.3 #> #> [[57]]$y #> [1] 3.3 #> #> #> [[58]] #> [[58]]$x #> [1] 4.9 #> #> [[58]]$y #> [1] 2.4 #> #> #> [[59]] #> [[59]]$x #> [1] 6.6 #> #> [[59]]$y #> [1] 2.9 #> #> #> [[60]] #> [[60]]$x #> [1] 5.2 #> #> [[60]]$y #> [1] 2.7 #> #> #> [[61]] #> [[61]]$x #> [1] 5 #> #> [[61]]$y #> [1] 2 #> #> #> [[62]] #> [[62]]$x #> [1] 5.9 #> #> [[62]]$y #> [1] 3 #> #> #> [[63]] #> [[63]]$x #> [1] 6 #> #> [[63]]$y #> [1] 2.2 #> #> #> [[64]] #> [[64]]$x #> [1] 6.1 #> #> [[64]]$y #> [1] 2.9 #> #> #> [[65]] #> [[65]]$x #> [1] 5.6 #> #> [[65]]$y #> [1] 2.9 #> #> #> [[66]] #> [[66]]$x #> [1] 6.7 #> #> [[66]]$y #> [1] 3.1 #> #> #> [[67]] #> [[67]]$x #> [1] 5.6 #> #> [[67]]$y #> [1] 3 #> #> #> [[68]] #> [[68]]$x #> [1] 5.8 #> #> [[68]]$y #> [1] 2.7 #> #> #> [[69]] #> [[69]]$x #> [1] 6.2 #> #> [[69]]$y #> [1] 2.2 #> #> #> [[70]] #> [[70]]$x #> [1] 5.6 #> #> [[70]]$y #> [1] 2.5 #> #> #> [[71]] #> [[71]]$x #> [1] 5.9 #> #> [[71]]$y #> [1] 3.2 #> #> #> [[72]] #> [[72]]$x #> [1] 6.1 #> #> [[72]]$y #> [1] 2.8 #> #> #> [[73]] #> [[73]]$x #> [1] 6.3 #> #> [[73]]$y #> [1] 2.5 #> #> #> [[74]] #> [[74]]$x #> [1] 6.1 #> #> [[74]]$y #> [1] 2.8 #> #> #> [[75]] #> [[75]]$x #> [1] 6.4 #> #> [[75]]$y #> [1] 2.9 #> #> #> [[76]] #> [[76]]$x #> [1] 6.6 #> #> [[76]]$y #> [1] 3 #> #> #> [[77]] #> [[77]]$x #> [1] 6.8 #> #> [[77]]$y #> [1] 2.8 #> #> #> [[78]] #> [[78]]$x #> [1] 6.7 #> #> [[78]]$y #> [1] 3 #> #> #> [[79]] #> [[79]]$x #> [1] 6 #> #> [[79]]$y #> [1] 2.9 #> #> #> [[80]] #> [[80]]$x #> [1] 5.7 #> #> [[80]]$y #> [1] 2.6 #> #> #> [[81]] #> [[81]]$x #> [1] 5.5 #> #> [[81]]$y #> [1] 2.4 #> #> #> [[82]] #> [[82]]$x #> [1] 5.5 #> #> [[82]]$y #> [1] 2.4 #> #> #> [[83]] #> [[83]]$x #> [1] 5.8 #> #> [[83]]$y #> [1] 2.7 #> #> #> [[84]] #> [[84]]$x #> [1] 6 #> #> [[84]]$y #> [1] 2.7 #> #> #> [[85]] #> [[85]]$x #> [1] 5.4 #> #> [[85]]$y #> [1] 3 #> #> #> [[86]] #> [[86]]$x #> [1] 6 #> #> [[86]]$y #> [1] 3.4 #> #> #> [[87]] #> [[87]]$x #> [1] 6.7 #> #> [[87]]$y #> [1] 3.1 #> #> #> [[88]] #> [[88]]$x #> [1] 6.3 #> #> [[88]]$y #> [1] 2.3 #> #> #> [[89]] #> [[89]]$x #> [1] 5.6 #> #> [[89]]$y #> [1] 3 #> #> #> [[90]] #> [[90]]$x #> [1] 5.5 #> #> [[90]]$y #> [1] 2.5 #> #> #> [[91]] #> [[91]]$x #> [1] 5.5 #> #> [[91]]$y #> [1] 2.6 #> #> #> [[92]] #> [[92]]$x #> [1] 6.1 #> #> [[92]]$y #> [1] 3 #> #> #> [[93]] #> [[93]]$x #> [1] 5.8 #> #> [[93]]$y #> [1] 2.6 #> #> #> [[94]] #> [[94]]$x #> [1] 5 #> #> [[94]]$y #> [1] 2.3 #> #> #> [[95]] #> [[95]]$x #> [1] 5.6 #> #> [[95]]$y #> [1] 2.7 #> #> #> [[96]] #> [[96]]$x #> [1] 5.7 #> #> [[96]]$y #> [1] 3 #> #> #> [[97]] #> [[97]]$x #> [1] 5.7 #> #> [[97]]$y #> [1] 2.9 #> #> #> [[98]] #> [[98]]$x #> [1] 6.2 #> #> [[98]]$y #> [1] 2.9 #> #> #> [[99]] #> [[99]]$x #> [1] 5.1 #> #> [[99]]$y #> [1] 2.5 #> #> #> [[100]] #> [[100]]$x #> [1] 5.7 #> #> [[100]]$y #> [1] 2.8 #> #> #> [[101]] #> [[101]]$x #> [1] 6.3 #> #> [[101]]$y #> [1] 3.3 #> #> #> [[102]] #> [[102]]$x #> [1] 5.8 #> #> [[102]]$y #> [1] 2.7 #> #> #> [[103]] #> [[103]]$x #> [1] 7.1 #> #> [[103]]$y #> [1] 3 #> #> #> [[104]] #> [[104]]$x #> [1] 6.3 #> #> [[104]]$y #> [1] 2.9 #> #> #> [[105]] #> [[105]]$x #> [1] 6.5 #> #> [[105]]$y #> [1] 3 #> #> #> [[106]] #> [[106]]$x #> [1] 7.6 #> #> [[106]]$y #> [1] 3 #> #> #> [[107]] #> [[107]]$x #> [1] 4.9 #> #> [[107]]$y #> [1] 2.5 #> #> #> [[108]] #> [[108]]$x #> [1] 7.3 #> #> [[108]]$y #> [1] 2.9 #> #> #> [[109]] #> [[109]]$x #> [1] 6.7 #> #> [[109]]$y #> [1] 2.5 #> #> #> [[110]] #> [[110]]$x #> [1] 7.2 #> #> [[110]]$y #> [1] 3.6 #> #> #> [[111]] #> [[111]]$x #> [1] 6.5 #> #> [[111]]$y #> [1] 3.2 #> #> #> [[112]] #> [[112]]$x #> [1] 6.4 #> #> [[112]]$y #> [1] 2.7 #> #> #> [[113]] #> [[113]]$x #> [1] 6.8 #> #> [[113]]$y #> [1] 3 #> #> #> [[114]] #> [[114]]$x #> [1] 5.7 #> #> [[114]]$y #> [1] 2.5 #> #> #> [[115]] #> [[115]]$x #> [1] 5.8 #> #> [[115]]$y #> [1] 2.8 #> #> #> [[116]] #> [[116]]$x #> [1] 6.4 #> #> [[116]]$y #> [1] 3.2 #> #> #> [[117]] #> [[117]]$x #> [1] 6.5 #> #> [[117]]$y #> [1] 3 #> #> #> [[118]] #> [[118]]$x #> [1] 7.7 #> #> [[118]]$y #> [1] 3.8 #> #> #> [[119]] #> [[119]]$x #> [1] 7.7 #> #> [[119]]$y #> [1] 2.6 #> #> #> [[120]] #> [[120]]$x #> [1] 6 #> #> [[120]]$y #> [1] 2.2 #> #> #> [[121]] #> [[121]]$x #> [1] 6.9 #> #> [[121]]$y #> [1] 3.2 #> #> #> [[122]] #> [[122]]$x #> [1] 5.6 #> #> [[122]]$y #> [1] 2.8 #> #> #> [[123]] #> [[123]]$x #> [1] 7.7 #> #> [[123]]$y #> [1] 2.8 #> #> #> [[124]] #> [[124]]$x #> [1] 6.3 #> #> [[124]]$y #> [1] 2.7 #> #> #> [[125]] #> [[125]]$x #> [1] 6.7 #> #> [[125]]$y #> [1] 3.3 #> #> #> [[126]] #> [[126]]$x #> [1] 7.2 #> #> [[126]]$y #> [1] 3.2 #> #> #> [[127]] #> [[127]]$x #> [1] 6.2 #> #> [[127]]$y #> [1] 2.8 #> #> #> [[128]] #> [[128]]$x #> [1] 6.1 #> #> [[128]]$y #> [1] 3 #> #> #> [[129]] #> [[129]]$x #> [1] 6.4 #> #> [[129]]$y #> [1] 2.8 #> #> #> [[130]] #> [[130]]$x #> [1] 7.2 #> #> [[130]]$y #> [1] 3 #> #> #> [[131]] #> [[131]]$x #> [1] 7.4 #> #> [[131]]$y #> [1] 2.8 #> #> #> [[132]] #> [[132]]$x #> [1] 7.9 #> #> [[132]]$y #> [1] 3.8 #> #> #> [[133]] #> [[133]]$x #> [1] 6.4 #> #> [[133]]$y #> [1] 2.8 #> #> #> [[134]] #> [[134]]$x #> [1] 6.3 #> #> [[134]]$y #> [1] 2.8 #> #> #> [[135]] #> [[135]]$x #> [1] 6.1 #> #> [[135]]$y #> [1] 2.6 #> #> #> [[136]] #> [[136]]$x #> [1] 7.7 #> #> [[136]]$y #> [1] 3 #> #> #> [[137]] #> [[137]]$x #> [1] 6.3 #> #> [[137]]$y #> [1] 3.4 #> #> #> [[138]] #> [[138]]$x #> [1] 6.4 #> #> [[138]]$y #> [1] 3.1 #> #> #> [[139]] #> [[139]]$x #> [1] 6 #> #> [[139]]$y #> [1] 3 #> #> #> [[140]] #> [[140]]$x #> [1] 6.9 #> #> [[140]]$y #> [1] 3.1 #> #> #> [[141]] #> [[141]]$x #> [1] 6.7 #> #> [[141]]$y #> [1] 3.1 #> #> #> [[142]] #> [[142]]$x #> [1] 6.9 #> #> [[142]]$y #> [1] 3.1 #> #> #> [[143]] #> [[143]]$x #> [1] 5.8 #> #> [[143]]$y #> [1] 2.7 #> #> #> [[144]] #> [[144]]$x #> [1] 6.8 #> #> [[144]]$y #> [1] 3.2 #> #> #> [[145]] #> [[145]]$x #> [1] 6.7 #> #> [[145]]$y #> [1] 3.3 #> #> #> [[146]] #> [[146]]$x #> [1] 6.7 #> #> [[146]]$y #> [1] 3 #> #> #> [[147]] #> [[147]]$x #> [1] 6.3 #> #> [[147]]$y #> [1] 2.5 #> #> #> [[148]] #> [[148]]$x #> [1] 6.5 #> #> [[148]]$y #> [1] 3 #> #> #> [[149]] #> [[149]]$x #> [1] 6.2 #> #> [[149]]$y #> [1] 3.4 #> #> #> [[150]] #> [[150]]$x #> [1] 5.9 #> #> [[150]]$y #> [1] 3 #> #>"},{"path":"https://dreamrs.github.io/apexcharter/reference/pie_opts.html","id":null,"dir":"Reference","previous_headings":"","what":"Pie options — pie_opts","title":"Pie options — pie_opts","text":"Use options ax_plotOptions.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/pie_opts.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Pie options — pie_opts","text":"","code":"pie_opts( size = NULL, donut = NULL, customScale = NULL, offsetX = NULL, offsetY = NULL, dataLabels = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/pie_opts.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Pie options — pie_opts","text":"size Numeric. Custom size pie override default size calculations. donut List two fields size (Donut / ring size percentage relative total pie area.) background (background color pie). customScale Numeric. Transform scale whole pie/donut overriding default calculations. offsetX Numeric. Sets left offset whole pie area. offsetY Numeric. Sets top offset whole pie area. dataLabels List field offset (Numeric, Offset labels move outside / inside donut area) ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/pie_opts.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Pie options — pie_opts","text":"list options can used ax_plotOptions.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/pie_opts.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Pie options — pie_opts","text":"See https://apexcharts.com/docs/options/plotoptions/pie/.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/pie_opts.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Pie options — pie_opts","text":"","code":"data(\"mpg\", package = \"ggplot2\") apex(mpg, aes(cyl), type = \"donut\") %>% ax_plotOptions( pie = pie_opts( donut = list(size = \"90%\", background = \"#BABABA\") ) ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"donut\"},\"series\":[81,4,79,70],\"labels\":[\"4\",\"5\",\"6\",\"8\"],\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"plotOptions\":{\"pie\":{\"donut\":{\"size\":\"90%\",\"background\":\"#BABABA\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"4\",\"max\":\"8\"},\"type\":\"donut\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/radialBar_opts.html","id":null,"dir":"Reference","previous_headings":"","what":"Radial bar options — radialBar_opts","title":"Radial bar options — radialBar_opts","text":"Use options ax_plotOptions.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/radialBar_opts.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Radial bar options — radialBar_opts","text":"","code":"radialBar_opts( size = NULL, inverseOrder = NULL, startAngle = NULL, endAngle = NULL, offsetX = NULL, offsetY = NULL, hollow = NULL, track = NULL, dataLabels = NULL, ... )"},{"path":"https://dreamrs.github.io/apexcharter/reference/radialBar_opts.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Radial bar options — radialBar_opts","text":"size Numeric. Manual size radialBars instead calculating automatically default height / width. inverseOrder Logical. Whether make first value series innermost outermost. startAngle Numeric. Angle radialBars start. endAngle Numeric. Angle radialBars end. sum startAngle endAngle exceed 360. offsetX Numeric. Sets left offset radialBars. offsetY Numeric. Sets top offset radialBars. hollow List. track List. dataLabels List. ... Additional parameters.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/radialBar_opts.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Radial bar options — radialBar_opts","text":"list options can used ax_plotOptions.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/radialBar_opts.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Radial bar options — radialBar_opts","text":"See https://apexcharts.com/docs/options/plotoptions/radialbar/.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/radialBar_opts.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Radial bar options — radialBar_opts","text":"","code":"apexchart() %>% ax_chart(type = \"radialBar\") %>% ax_plotOptions( radialBar = radialBar_opts( startAngle = -135, endAngle = 135, dataLabels = list( name = list( fontSize = \"16px\", # color = undefined, offsetY = 120 ), value = list( offsetY = 76, fontSize = \"22px\", # color = undefined, formatter = htmlwidgets::JS(\"function (val) {return val + '%';}\") ) ) ) ) %>% ax_stroke(dashArray = 4) %>% ax_series(70) %>% ax_labels(\"Indicator\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"radialBar\"},\"plotOptions\":{\"radialBar\":{\"startAngle\":-135,\"endAngle\":135,\"dataLabels\":{\"name\":{\"fontSize\":\"16px\",\"offsetY\":120},\"value\":{\"offsetY\":76,\"fontSize\":\"22px\",\"formatter\":\"function (val) {return val + '%';}\"}}}},\"stroke\":{\"dashArray\":4},\"series\":[70],\"labels\":[\"Indicator\"]},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false},\"evals\":[\"ax_opts.plotOptions.radialBar.dataLabels.value.formatter\"],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/run_demo_input.html","id":null,"dir":"Reference","previous_headings":"","what":"Run Shiny input events examples — run_demo_input","title":"Run Shiny input events examples — run_demo_input","text":"Run Shiny input events examples","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/run_demo_input.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Run Shiny input events examples — run_demo_input","text":"","code":"run_demo_input(example = c(\"click\", \"zoom\", \"selection\"))"},{"path":"https://dreamrs.github.io/apexcharter/reference/run_demo_input.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Run Shiny input events examples — run_demo_input","text":"example Name example.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/run_demo_input.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Run Shiny input events examples — run_demo_input","text":"","code":"if (interactive()) { run_demo_input(\"click\") run_demo_input(\"zoom\") run_demo_input(\"selection\") }"},{"path":"https://dreamrs.github.io/apexcharter/reference/run_demo_sparkbox.html","id":null,"dir":"Reference","previous_headings":"","what":"Run Shiny spark boxes example — run_demo_sparkbox","title":"Run Shiny spark boxes example — run_demo_sparkbox","text":"Run Shiny spark boxes example","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/run_demo_sparkbox.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Run Shiny spark boxes example — run_demo_sparkbox","text":"","code":"run_demo_sparkbox()"},{"path":"https://dreamrs.github.io/apexcharter/reference/run_demo_sparkbox.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Run Shiny spark boxes example — run_demo_sparkbox","text":"","code":"if (interactive()) { run_demo_sparkbox() }"},{"path":"https://dreamrs.github.io/apexcharter/reference/run_demo_sync.html","id":null,"dir":"Reference","previous_headings":"","what":"Run Shiny synchronization example — run_demo_sync","title":"Run Shiny synchronization example — run_demo_sync","text":"Run Shiny synchronization example","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/run_demo_sync.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Run Shiny synchronization example — run_demo_sync","text":"","code":"run_demo_sync()"},{"path":"https://dreamrs.github.io/apexcharter/reference/run_demo_sync.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Run Shiny synchronization example — run_demo_sync","text":"","code":"if (interactive()) { run_demo_sync() }"},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_click.html","id":null,"dir":"Reference","previous_headings":"","what":"Retrieve click information in Shiny — set_input_click","title":"Retrieve click information in Shiny — set_input_click","text":"According type chart, different values retrieved: bar column: retrieve category (x-axis). pie donut: retrieve label. time-series: retrieve x-axis value, display markers size > 0 set tooltip's options intersect = TRUE shared = FALSE. scatter: retrieve XY coordinates.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_click.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Retrieve click information in Shiny — set_input_click","text":"","code":"set_input_click( ax, inputId, multiple = FALSE, effect_type = c(\"darken\", \"lighten\", \"none\"), effect_value = 0.35, session = shiny::getDefaultReactiveDomain() )"},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_click.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Retrieve click information in Shiny — set_input_click","text":"ax apexchart() htmlwidget object. inputId id used server-side retrieving click. multiple Allow multiple selection: TRUE FALSE (default). effect_type Type effect selected element, default use lightly darken color. effect_value larger value intensifies select effect, accept value 0 1. session Shiny session.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_click.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Retrieve click information in Shiny — set_input_click","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_click.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Retrieve click information in Shiny — set_input_click","text":"x-axis type datetime, value retrieved class POSIXct.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_click.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Retrieve click information in Shiny — set_input_click","text":"","code":"library(apexcharter) # Not in Shiny but you can still click on bars data.frame( month = month.abb, value = sample(1:100, 12) ) %>% apex(aes(month, value)) %>% set_input_click(\"month_click\", multiple = TRUE) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"bar\"},\"series\":[{\"name\":\"value\",\"type\":\"bar\",\"data\":[{\"x\":\"Jan\",\"y\":80},{\"x\":\"Feb\",\"y\":71},{\"x\":\"Mar\",\"y\":12},{\"x\":\"Apr\",\"y\":96},{\"x\":\"May\",\"y\":13},{\"x\":\"Jun\",\"y\":64},{\"x\":\"Jul\",\"y\":5},{\"x\":\"Aug\",\"y\":62},{\"x\":\"Sep\",\"y\":63},{\"x\":\"Oct\",\"y\":38},{\"x\":\"Nov\",\"y\":15},{\"x\":\"Dec\",\"y\":37}]}],\"dataLabels\":{\"enabled\":false},\"plotOptions\":{\"bar\":{\"horizontal\":false}},\"tooltip\":{\"shared\":true,\"intersect\":false,\"followCursor\":true},\"yaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"states\":{\"active\":{\"allowMultipleDataPointsSelection\":true,\"filter\":{\"type\":\"darken\",\"value\":0.35}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"Apr\",\"max\":\"Sep\"},\"type\":\"column\",\"shinyEvents\":{\"click\":{\"inputId\":\"month_click\"}}},\"evals\":[],\"jsHooks\":[]} # Interactive examples: if (interactive()) { run_demo_input(\"click\") }"},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_export.html","id":null,"dir":"Reference","previous_headings":"","what":"Retrieve chart's base64 dataURI. — set_input_export","title":"Retrieve chart's base64 dataURI. — set_input_export","text":"Retrieve chart's base64 dataURI.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_export.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Retrieve chart's base64 dataURI. — set_input_export","text":"","code":"set_input_export(ax, inputId, session = shiny::getDefaultReactiveDomain())"},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_export.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Retrieve chart's base64 dataURI. — set_input_export","text":"ax apexchart() htmlwidget object. inputId id used server-side retrieving data. session Shiny session.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_export.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Retrieve chart's base64 dataURI. — set_input_export","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_export.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Retrieve chart's base64 dataURI. — set_input_export","text":"","code":"library(shiny) library(apexcharter) ui <- fluidPage( fluidRow( column( width = 8, offset = 2, tags$h2(\"Export PNG\"), actionButton(\"redraw\", \"Redraw chart\"), apexchartOutput(\"chart\"), verbatimTextOutput(\"result\"), uiOutput(outputId = \"image\") ) ) ) server <- function(input, output, session) { output$chart <- renderApexchart({ input$redraw apexchart() %>% ax_chart(type = \"bar\") %>% ax_series( list( name = \"Example\", data = sample(1:100, 5) ) ) %>% ax_xaxis( categories = LETTERS[1:5] ) %>% set_input_export(\"export\") }) output$result <- renderPrint({ input$export }) output$image <- renderUI({ tags$img(src = input$export) }) } if (interactive()) shinyApp(ui, server)"},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_selection.html","id":null,"dir":"Reference","previous_headings":"","what":"Retrieve selection information in Shiny — set_input_selection","title":"Retrieve selection information in Shiny — set_input_selection","text":"Retrieve selection information Shiny","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_selection.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Retrieve selection information in Shiny — set_input_selection","text":"","code":"set_input_selection( ax, inputId, type = c(\"x\", \"xy\", \"y\"), fill_color = \"#24292e\", fill_opacity = 0.1, stroke_width = 1, stroke_dasharray = 3, stroke_color = \"#24292e\", stroke_opacity = 0.4, xmin = NULL, xmax = NULL, ymin = NULL, ymax = NULL, session = shiny::getDefaultReactiveDomain() )"},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_selection.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Retrieve selection information in Shiny — set_input_selection","text":"ax apexchart() htmlwidget object. inputId id used server-side retrieving selection. type Allow selection either x-axis, y-axis axis. fill_color Background color selection rect drawn user drags chart. fill_opacity Opacity background color selection rectangle. stroke_width Border thickness selection rectangle. stroke_dasharray Creates dashes borders selection rectangle. Higher number creates space dashes border. stroke_color Colors selection border. stroke_opacity Opacity selection border. xmin, xmax Start value x-axis. min max must provided. ymin, ymax Start value y-axis. min max must provided. session Shiny session.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_selection.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Retrieve selection information in Shiny — set_input_selection","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_selection.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Retrieve selection information in Shiny — set_input_selection","text":"","code":"library(apexcharter) data(\"economics\", package = \"ggplot2\") # Not in Shiny so no events # but you can still select an area on chart apex(economics, aes(date, psavert), type = \"line\") %>% set_input_selection(\"selection\") {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\",\"selection\":{\"enabled\":true,\"type\":\"x\",\"fill\":{\"color\":\"#24292e\",\"opacity\":0.1},\"stroke\":{\"width\":1,\"dashArray\":3,\"color\":\"#24292e\",\"opacity\":0.4}},\"toolbar\":{\"autoSelected\":\"selection\"}},\"series\":[{\"name\":\"psavert\",\"type\":\"line\",\"data\":[[-79056000000,12.6],[-76377600000,12.6],[-73699200000,11.9],[-71107200000,12.9],[-68428800000,12.8],[-65836800000,11.8],[-63158400000,11.7],[-60480000000,12.3],[-57974400000,11.7],[-55296000000,12.3],[-52704000000,12],[-50025600000,11.7],[-47433600000,10.7],[-44755200000,10.5],[-42076800000,10.6],[-39484800000,10.8],[-36806400000,10.6],[-34214400000,11.1],[-31536000000,10.3],[-28857600000,9.7],[-26438400000,10.2],[-23760000000,9.7],[-21168000000,10.1],[-18489600000,11.1],[-15897600000,11.8],[-13219200000,11.5],[-10540800000,11.6],[-7948800000,11.4],[-5270400000,11.6],[-2678400000,11.8],[0,11.8],[2678400000,11.7],[5097600000,12.4],[7776000000,13.3],[10368000000,12.4],[13046400000,12.3],[15638400000,13.5],[18316800000,13.4],[20995200000,12.9],[23587200000,13.1],[26265600000,13.6],[28857600000,13.2],[31536000000,13.3],[34214400000,13.3],[36633600000,13.5],[39312000000,13.2],[41904000000,13.6],[44582400000,14.7],[47174400000,13.8],[49852800000,13.6],[52531200000,13.3],[55123200000,13.3],[57801600000,13.1],[60393600000,13],[63072000000,12.5],[65750400000,12.8],[68256000000,11.8],[70934400000,11.5],[73526400000,11.7],[76204800000,11.7],[78796800000,11.7],[81475200000,12],[84153600000,12.2],[86745600000,13],[89424000000,13.6],[92016000000,13.7],[94694400000,12.4],[97372800000,12.5],[99792000000,12.7],[102470400000,13.2],[105062400000,13.2],[107740800000,13.6],[110332800000,13.2],[113011200000,13.9],[115689600000,13.1],[118281600000,14.4],[120960000000,14.4],[123552000000,14.8],[126230400000,14.3],[128908800000,14.2],[131328000000,13.4],[134006400000,13.1],[136598400000,12.8],[139276800000,12.8],[141868800000,12.8],[144547200000,12.1],[147225600000,12.9],[149817600000,13.4],[152496000000,13.8],[155088000000,14],[157766400000,13.2],[160444800000,12.5],[162864000000,12.7],[165542400000,14.2],[168134400000,17.3],[170812800000,14.3],[173404800000,12.6],[176083200000,13],[178761600000,13],[181353600000,13.4],[184032000000,12.7],[186624000000,12],[189302400000,11.7],[191980800000,12.3],[194486400000,12.2],[197164800000,11.7],[199756800000,12.3],[202435200000,11.4],[205027200000,11.7],[207705600000,11.7],[210384000000,11.4],[212976000000,11.1],[215654400000,11.4],[218246400000,10.6],[220924800000,10.6],[223603200000,9.3],[226022400000,10.5],[228700800000,10.5],[231292800000,10.3],[233971200000,10.6],[236563200000,10.5],[239241600000,10.9],[241920000000,11.1],[244512000000,11],[247190400000,11.2],[249782400000,11.4],[252460800000,11.9],[255139200000,11.1],[257558400000,11],[260236800000,10.8],[262828800000,10.3],[265507200000,10],[268099200000,10.9],[270777600000,10.5],[273456000000,10.6],[276048000000,10.7],[278726400000,10.5],[281318400000,10.4],[283996800000,11.1],[286675200000,11.1],[289094400000,11.2],[291772800000,11],[294364800000,10.3],[297043200000,9.9],[299635200000,10.6],[302313600000,9.7],[304992000000,9.4],[307584000000,9.7],[310262400000,9.7],[312854400000,10.1],[315532800000,9.9],[318211200000,10.1],[320716800000,10.2],[323395200000,11.3],[325987200000,11.4],[328665600000,11.2],[331257600000,11.3],[333936000000,11.3],[336614400000,11.7],[339206400000,11.3],[341884800000,11.6],[344476800000,11.4],[347155200000,10.9],[349833600000,10.8],[352252800000,10.8],[354931200000,10.9],[357523200000,11],[360201600000,10.8],[362793600000,12.3],[365472000000,12],[368150400000,12.4],[370742400000,13],[373420800000,13.2],[376012800000,12.5],[378691200000,12.7],[381369600000,12.1],[383788800000,12.2],[386467200000,12.9],[389059200000,12.3],[391737600000,12.3],[394329600000,12.5],[397008000000,12.6],[399686400000,11.8],[402278400000,11.3],[404956800000,10.9],[407548800000,10.9],[410227200000,11.1],[412905600000,11.1],[415324800000,10.6],[418003200000,10.3],[420595200000,9.9],[423273600000,9.1],[425865600000,9.6],[428544000000,9.2],[431222400000,9.6],[433814400000,9.7],[436492800000,10.3],[439084800000,10.1],[441763200000,10],[444441600000,11.7],[446947200000,11.5],[449625600000,11.5],[452217600000,11.1],[454896000000,11.1],[457488000000,11.6],[460166400000,11.8],[462844800000,11.8],[465436800000,11.7],[468115200000,10.9],[470707200000,11.2],[473385600000,10.3],[476064000000,9.1],[478483200000,8.7],[481161600000,9.9],[483753600000,11.1],[486432000000,9.6],[489024000000,9.1],[491702400000,8.2],[494380800000,7.3],[496972800000,9.1],[499651200000,9],[502243200000,8.6],[504921600000,8.6],[507600000000,9.3],[510019200000,9.9],[512697600000,9.7],[515289600000,9.3],[517968000000,9.4],[520560000000,9.3],[523238400000,9],[525916800000,7.2],[528508800000,8.4],[531187200000,8.8],[533779200000,7],[536457600000,9.7],[539136000000,8.5],[541555200000,8.5],[544233600000,4.5],[546825600000,8.2],[549504000000,7.7],[552096000000,7.5],[554774400000,7.2],[557452800000,7.6],[560044800000,8.3],[562723200000,8.5],[565315200000,8.7],[567993600000,8.1],[570672000000,8.6],[573177600000,8.2],[575856000000,8.8],[578448000000,8.4],[581126400000,8.4],[583718400000,8.6],[586396800000,8.4],[589075200000,8.9],[591667200000,8.6],[594345600000,8.4],[596937600000,8.3],[599616000000,8.5],[602294400000,9],[604713600000,9.5],[607392000000,8.4],[609984000000,8.1],[612662400000,8.2],[615254400000,8.2],[617932800000,7.6],[620611200000,8.1],[623203200000,8.5],[625881600000,8.6],[628473600000,7.8],[631152000000,8],[633830400000,8.6],[636249600000,8.3],[638928000000,8.8],[641520000000,8.7],[644198400000,8.6],[646790400000,8.7],[649468800000,8.1],[652147200000,8.1],[654739200000,7.8],[657417600000,7.9],[660009600000,8.8],[662688000000,9.3],[665366400000,8.8],[667785600000,8],[670464000000,8.6],[673056000000,8.4],[675734400000,8.9],[678326400000,8.2],[681004800000,8.6],[683683200000,8.8],[686275200000,9.3],[688953600000,9],[691545600000,9.7],[694224000000,9.4],[696902400000,9.8],[699408000000,9.7],[702086400000,9.9],[704678400000,9.9],[707356800000,10.1],[709948800000,9.6],[712627200000,9.7],[715305600000,8.7],[717897600000,8],[720576000000,8],[723168000000,10.6],[725846400000,8.6],[728524800000,8.9],[730944000000,8.9],[733622400000,8.7],[736214400000,8.3],[738892800000,7.8],[741484800000,7.6],[744163200000,7.7],[746841600000,6.9],[749433600000,6.3],[752112000000,6.3],[754704000000,9.1],[757382400000,7.1],[760060800000,6.5],[762480000000,6.8],[765158400000,6.4],[767750400000,7.6],[770428800000,6.9],[773020800000,7],[775699200000,6.5],[778377600000,6.8],[780969600000,7.1],[783648000000,7],[786240000000,7.2],[788918400000,7.5],[791596800000,7.8],[794016000000,7.5],[796694400000,6.9],[799286400000,7.1],[801964800000,6.7],[804556800000,7.1],[807235200000,6.7],[809913600000,6.8],[812505600000,7.1],[815184000000,6.6],[817776000000,6.1],[820454400000,6.7],[823132800000,6.7],[825638400000,6.6],[828316800000,5.7],[830908800000,6.7],[833587200000,7.1],[836179200000,6.7],[838857600000,6.6],[841536000000,6.7],[844128000000,6.4],[846806400000,6.4],[849398400000,6.4],[852076800000,6.2],[854755200000,6.2],[857174400000,6.4],[859852800000,6.5],[862444800000,6.8],[865123200000,6.6],[867715200000,6.1],[870393600000,6],[873072000000,6.2],[875664000000,6.2],[878342400000,6.4],[880934400000,6.4],[883612800000,7.4],[886291200000,7.4],[888710400000,7.5],[891388800000,7.2],[893980800000,6.9],[896659200000,6.8],[899251200000,6.9],[901929600000,6.8],[904608000000,6.4],[907200000000,6.2],[909878400000,6.3],[912470400000,5.8],[915148800000,6.4],[917827200000,6.2],[920246400000,5.9],[922924800000,5.2],[925516800000,4.9],[928195200000,4.8],[930787200000,4.8],[933465600000,4.7],[936144000000,4.2],[938736000000,4.6],[941414400000,4.8],[944006400000,4.4],[946684800000,5.4],[949363200000,4.8],[951868800000,4.5],[954547200000,5],[957139200000,4.9],[959817600000,4.9],[962409600000,5.2],[965088000000,5.2],[967766400000,4.5],[970358400000,4.6],[973036800000,4.5],[975628800000,4.2],[978307200000,4.8],[980985600000,4.9],[983404800000,5.3],[986083200000,5],[988675200000,4.5],[991353600000,4.5],[993945600000,5.6],[996624000000,6.8],[999302400000,7],[1001894400000,3.4],[1004572800000,4.1],[1007164800000,4.5],[1009843200000,6.1],[1012521600000,5.8],[1014940800000,5.9],[1017619200000,5.8],[1020211200000,6.5],[1022889600000,6.4],[1025481600000,5.5],[1028160000000,5.4],[1030838400000,5.7],[1033430400000,5.7],[1036108800000,5.7],[1038700800000,5.5],[1041379200000,5.5],[1044057600000,5.6],[1046476800000,5.3],[1049155200000,5.3],[1051747200000,5.8],[1054425600000,5.6],[1057017600000,6.3],[1059696000000,6],[1062374400000,5.2],[1064966400000,5.3],[1067644800000,5.4],[1070236800000,5.4],[1072915200000,5],[1075593600000,5],[1078099200000,4.9],[1080777600000,5.3],[1083369600000,5.3],[1086048000000,5.8],[1088640000000,5.3],[1091318400000,5.2],[1093996800000,4.6],[1096588800000,4.5],[1099267200000,4.1],[1101859200000,6.9],[1104537600000,3.7],[1107216000000,3.4],[1109635200000,3.6],[1112313600000,3.1],[1114905600000,3.5],[1117584000000,2.9],[1120176000000,2.2],[1122854400000,2.7],[1125532800000,2.7],[1128124800000,3.1],[1130803200000,3.5],[1133395200000,3.7],[1136073600000,4.2],[1138752000000,4.2],[1141171200000,4.2],[1143849600000,4],[1146441600000,3.8],[1149120000000,4],[1151712000000,3.4],[1154390400000,3.6],[1157068800000,3.6],[1159660800000,3.6],[1162339200000,3.9],[1164931200000,3.7],[1167609600000,3.7],[1170288000000,4.1],[1172707200000,4.4],[1175385600000,4.2],[1177977600000,4],[1180656000000,3.8],[1183248000000,3.7],[1185926400000,3.4],[1188604800000,3.5],[1191196800000,3.4],[1193875200000,3.1],[1196467200000,3.6],[1199145600000,3.7],[1201824000000,4.1],[1204329600000,4],[1207008000000,3.4],[1209600000000,7.8],[1212278400000,5.5],[1214870400000,4.4],[1217548800000,3.8],[1220227200000,4.7],[1222819200000,5.5],[1225497600000,6.4],[1228089600000,6.4],[1230768000000,6.2],[1233446400000,5.5],[1235865600000,5.9],[1238544000000,6.8],[1241136000000,8.2],[1243814400000,6.7],[1246406400000,6],[1249084800000,4.9],[1251763200000,5.9],[1254355200000,5.4],[1257033600000,5.9],[1259625600000,5.9],[1262304000000,6.1],[1264982400000,5.8],[1267401600000,5.7],[1270080000000,6.4],[1272672000000,7],[1275350400000,6.9],[1277942400000,6.8],[1280620800000,6.9],[1283299200000,6.7],[1285891200000,6.6],[1288569600000,6.6],[1291161600000,7.1],[1293840000000,7.4],[1296518400000,7.6],[1298937600000,7],[1301616000000,6.9],[1304208000000,6.9],[1306886400000,7.2],[1309478400000,7.3],[1312156800000,7.2],[1314835200000,6.8],[1317427200000,6.8],[1320105600000,7],[1322697600000,7.8],[1325376000000,8],[1328054400000,8],[1330560000000,8.5],[1333238400000,8.7],[1335830400000,8.8],[1338508800000,9.1],[1341100800000,8.2],[1343779200000,8],[1346457600000,8.2],[1349049600000,8.8],[1351728000000,9.7],[1354320000000,12],[1356998400000,6.3],[1359676800000,5.8],[1362096000000,5.9],[1364774400000,6.4],[1367366400000,6.7],[1370044800000,6.8],[1372636800000,6.6],[1375315200000,6.7],[1377993600000,6.8],[1380585600000,6.3],[1383264000000,6.2],[1385856000000,6.4],[1388534400000,7.1],[1391212800000,7.3],[1393632000000,7.4],[1396310400000,7.4],[1398902400000,7.4],[1401580800000,7.4],[1404172800000,7.5],[1406851200000,7.2],[1409529600000,7.4],[1412121600000,7.2],[1414800000000,7.3],[1417392000000,7.6],[1420070400000,7.7],[1422748800000,7.9],[1425168000000,7.4],[1427846400000,7.6]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\",\"shinyEvents\":{\"selection\":{\"inputId\":\"selection\",\"type\":\"x\"}}},\"evals\":[],\"jsHooks\":[]} # Default selection at start apex(economics, aes(date, psavert), type = \"line\") %>% set_input_selection( inputId = \"selection\", xmin = format_date(\"1980-01-01\"), xmax = format_date(\"1985-01-01\") ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\",\"selection\":{\"enabled\":true,\"type\":\"x\",\"fill\":{\"color\":\"#24292e\",\"opacity\":0.1},\"stroke\":{\"width\":1,\"dashArray\":3,\"color\":\"#24292e\",\"opacity\":0.4},\"xaxis\":{\"min\":\"new Date('1980-01-01').getTime()\",\"max\":\"new Date('1985-01-01').getTime()\"}},\"toolbar\":{\"autoSelected\":\"selection\"}},\"series\":[{\"name\":\"psavert\",\"type\":\"line\",\"data\":[[-79056000000,12.6],[-76377600000,12.6],[-73699200000,11.9],[-71107200000,12.9],[-68428800000,12.8],[-65836800000,11.8],[-63158400000,11.7],[-60480000000,12.3],[-57974400000,11.7],[-55296000000,12.3],[-52704000000,12],[-50025600000,11.7],[-47433600000,10.7],[-44755200000,10.5],[-42076800000,10.6],[-39484800000,10.8],[-36806400000,10.6],[-34214400000,11.1],[-31536000000,10.3],[-28857600000,9.7],[-26438400000,10.2],[-23760000000,9.7],[-21168000000,10.1],[-18489600000,11.1],[-15897600000,11.8],[-13219200000,11.5],[-10540800000,11.6],[-7948800000,11.4],[-5270400000,11.6],[-2678400000,11.8],[0,11.8],[2678400000,11.7],[5097600000,12.4],[7776000000,13.3],[10368000000,12.4],[13046400000,12.3],[15638400000,13.5],[18316800000,13.4],[20995200000,12.9],[23587200000,13.1],[26265600000,13.6],[28857600000,13.2],[31536000000,13.3],[34214400000,13.3],[36633600000,13.5],[39312000000,13.2],[41904000000,13.6],[44582400000,14.7],[47174400000,13.8],[49852800000,13.6],[52531200000,13.3],[55123200000,13.3],[57801600000,13.1],[60393600000,13],[63072000000,12.5],[65750400000,12.8],[68256000000,11.8],[70934400000,11.5],[73526400000,11.7],[76204800000,11.7],[78796800000,11.7],[81475200000,12],[84153600000,12.2],[86745600000,13],[89424000000,13.6],[92016000000,13.7],[94694400000,12.4],[97372800000,12.5],[99792000000,12.7],[102470400000,13.2],[105062400000,13.2],[107740800000,13.6],[110332800000,13.2],[113011200000,13.9],[115689600000,13.1],[118281600000,14.4],[120960000000,14.4],[123552000000,14.8],[126230400000,14.3],[128908800000,14.2],[131328000000,13.4],[134006400000,13.1],[136598400000,12.8],[139276800000,12.8],[141868800000,12.8],[144547200000,12.1],[147225600000,12.9],[149817600000,13.4],[152496000000,13.8],[155088000000,14],[157766400000,13.2],[160444800000,12.5],[162864000000,12.7],[165542400000,14.2],[168134400000,17.3],[170812800000,14.3],[173404800000,12.6],[176083200000,13],[178761600000,13],[181353600000,13.4],[184032000000,12.7],[186624000000,12],[189302400000,11.7],[191980800000,12.3],[194486400000,12.2],[197164800000,11.7],[199756800000,12.3],[202435200000,11.4],[205027200000,11.7],[207705600000,11.7],[210384000000,11.4],[212976000000,11.1],[215654400000,11.4],[218246400000,10.6],[220924800000,10.6],[223603200000,9.3],[226022400000,10.5],[228700800000,10.5],[231292800000,10.3],[233971200000,10.6],[236563200000,10.5],[239241600000,10.9],[241920000000,11.1],[244512000000,11],[247190400000,11.2],[249782400000,11.4],[252460800000,11.9],[255139200000,11.1],[257558400000,11],[260236800000,10.8],[262828800000,10.3],[265507200000,10],[268099200000,10.9],[270777600000,10.5],[273456000000,10.6],[276048000000,10.7],[278726400000,10.5],[281318400000,10.4],[283996800000,11.1],[286675200000,11.1],[289094400000,11.2],[291772800000,11],[294364800000,10.3],[297043200000,9.9],[299635200000,10.6],[302313600000,9.7],[304992000000,9.4],[307584000000,9.7],[310262400000,9.7],[312854400000,10.1],[315532800000,9.9],[318211200000,10.1],[320716800000,10.2],[323395200000,11.3],[325987200000,11.4],[328665600000,11.2],[331257600000,11.3],[333936000000,11.3],[336614400000,11.7],[339206400000,11.3],[341884800000,11.6],[344476800000,11.4],[347155200000,10.9],[349833600000,10.8],[352252800000,10.8],[354931200000,10.9],[357523200000,11],[360201600000,10.8],[362793600000,12.3],[365472000000,12],[368150400000,12.4],[370742400000,13],[373420800000,13.2],[376012800000,12.5],[378691200000,12.7],[381369600000,12.1],[383788800000,12.2],[386467200000,12.9],[389059200000,12.3],[391737600000,12.3],[394329600000,12.5],[397008000000,12.6],[399686400000,11.8],[402278400000,11.3],[404956800000,10.9],[407548800000,10.9],[410227200000,11.1],[412905600000,11.1],[415324800000,10.6],[418003200000,10.3],[420595200000,9.9],[423273600000,9.1],[425865600000,9.6],[428544000000,9.2],[431222400000,9.6],[433814400000,9.7],[436492800000,10.3],[439084800000,10.1],[441763200000,10],[444441600000,11.7],[446947200000,11.5],[449625600000,11.5],[452217600000,11.1],[454896000000,11.1],[457488000000,11.6],[460166400000,11.8],[462844800000,11.8],[465436800000,11.7],[468115200000,10.9],[470707200000,11.2],[473385600000,10.3],[476064000000,9.1],[478483200000,8.7],[481161600000,9.9],[483753600000,11.1],[486432000000,9.6],[489024000000,9.1],[491702400000,8.2],[494380800000,7.3],[496972800000,9.1],[499651200000,9],[502243200000,8.6],[504921600000,8.6],[507600000000,9.3],[510019200000,9.9],[512697600000,9.7],[515289600000,9.3],[517968000000,9.4],[520560000000,9.3],[523238400000,9],[525916800000,7.2],[528508800000,8.4],[531187200000,8.8],[533779200000,7],[536457600000,9.7],[539136000000,8.5],[541555200000,8.5],[544233600000,4.5],[546825600000,8.2],[549504000000,7.7],[552096000000,7.5],[554774400000,7.2],[557452800000,7.6],[560044800000,8.3],[562723200000,8.5],[565315200000,8.7],[567993600000,8.1],[570672000000,8.6],[573177600000,8.2],[575856000000,8.8],[578448000000,8.4],[581126400000,8.4],[583718400000,8.6],[586396800000,8.4],[589075200000,8.9],[591667200000,8.6],[594345600000,8.4],[596937600000,8.3],[599616000000,8.5],[602294400000,9],[604713600000,9.5],[607392000000,8.4],[609984000000,8.1],[612662400000,8.2],[615254400000,8.2],[617932800000,7.6],[620611200000,8.1],[623203200000,8.5],[625881600000,8.6],[628473600000,7.8],[631152000000,8],[633830400000,8.6],[636249600000,8.3],[638928000000,8.8],[641520000000,8.7],[644198400000,8.6],[646790400000,8.7],[649468800000,8.1],[652147200000,8.1],[654739200000,7.8],[657417600000,7.9],[660009600000,8.8],[662688000000,9.3],[665366400000,8.8],[667785600000,8],[670464000000,8.6],[673056000000,8.4],[675734400000,8.9],[678326400000,8.2],[681004800000,8.6],[683683200000,8.8],[686275200000,9.3],[688953600000,9],[691545600000,9.7],[694224000000,9.4],[696902400000,9.8],[699408000000,9.7],[702086400000,9.9],[704678400000,9.9],[707356800000,10.1],[709948800000,9.6],[712627200000,9.7],[715305600000,8.7],[717897600000,8],[720576000000,8],[723168000000,10.6],[725846400000,8.6],[728524800000,8.9],[730944000000,8.9],[733622400000,8.7],[736214400000,8.3],[738892800000,7.8],[741484800000,7.6],[744163200000,7.7],[746841600000,6.9],[749433600000,6.3],[752112000000,6.3],[754704000000,9.1],[757382400000,7.1],[760060800000,6.5],[762480000000,6.8],[765158400000,6.4],[767750400000,7.6],[770428800000,6.9],[773020800000,7],[775699200000,6.5],[778377600000,6.8],[780969600000,7.1],[783648000000,7],[786240000000,7.2],[788918400000,7.5],[791596800000,7.8],[794016000000,7.5],[796694400000,6.9],[799286400000,7.1],[801964800000,6.7],[804556800000,7.1],[807235200000,6.7],[809913600000,6.8],[812505600000,7.1],[815184000000,6.6],[817776000000,6.1],[820454400000,6.7],[823132800000,6.7],[825638400000,6.6],[828316800000,5.7],[830908800000,6.7],[833587200000,7.1],[836179200000,6.7],[838857600000,6.6],[841536000000,6.7],[844128000000,6.4],[846806400000,6.4],[849398400000,6.4],[852076800000,6.2],[854755200000,6.2],[857174400000,6.4],[859852800000,6.5],[862444800000,6.8],[865123200000,6.6],[867715200000,6.1],[870393600000,6],[873072000000,6.2],[875664000000,6.2],[878342400000,6.4],[880934400000,6.4],[883612800000,7.4],[886291200000,7.4],[888710400000,7.5],[891388800000,7.2],[893980800000,6.9],[896659200000,6.8],[899251200000,6.9],[901929600000,6.8],[904608000000,6.4],[907200000000,6.2],[909878400000,6.3],[912470400000,5.8],[915148800000,6.4],[917827200000,6.2],[920246400000,5.9],[922924800000,5.2],[925516800000,4.9],[928195200000,4.8],[930787200000,4.8],[933465600000,4.7],[936144000000,4.2],[938736000000,4.6],[941414400000,4.8],[944006400000,4.4],[946684800000,5.4],[949363200000,4.8],[951868800000,4.5],[954547200000,5],[957139200000,4.9],[959817600000,4.9],[962409600000,5.2],[965088000000,5.2],[967766400000,4.5],[970358400000,4.6],[973036800000,4.5],[975628800000,4.2],[978307200000,4.8],[980985600000,4.9],[983404800000,5.3],[986083200000,5],[988675200000,4.5],[991353600000,4.5],[993945600000,5.6],[996624000000,6.8],[999302400000,7],[1001894400000,3.4],[1004572800000,4.1],[1007164800000,4.5],[1009843200000,6.1],[1012521600000,5.8],[1014940800000,5.9],[1017619200000,5.8],[1020211200000,6.5],[1022889600000,6.4],[1025481600000,5.5],[1028160000000,5.4],[1030838400000,5.7],[1033430400000,5.7],[1036108800000,5.7],[1038700800000,5.5],[1041379200000,5.5],[1044057600000,5.6],[1046476800000,5.3],[1049155200000,5.3],[1051747200000,5.8],[1054425600000,5.6],[1057017600000,6.3],[1059696000000,6],[1062374400000,5.2],[1064966400000,5.3],[1067644800000,5.4],[1070236800000,5.4],[1072915200000,5],[1075593600000,5],[1078099200000,4.9],[1080777600000,5.3],[1083369600000,5.3],[1086048000000,5.8],[1088640000000,5.3],[1091318400000,5.2],[1093996800000,4.6],[1096588800000,4.5],[1099267200000,4.1],[1101859200000,6.9],[1104537600000,3.7],[1107216000000,3.4],[1109635200000,3.6],[1112313600000,3.1],[1114905600000,3.5],[1117584000000,2.9],[1120176000000,2.2],[1122854400000,2.7],[1125532800000,2.7],[1128124800000,3.1],[1130803200000,3.5],[1133395200000,3.7],[1136073600000,4.2],[1138752000000,4.2],[1141171200000,4.2],[1143849600000,4],[1146441600000,3.8],[1149120000000,4],[1151712000000,3.4],[1154390400000,3.6],[1157068800000,3.6],[1159660800000,3.6],[1162339200000,3.9],[1164931200000,3.7],[1167609600000,3.7],[1170288000000,4.1],[1172707200000,4.4],[1175385600000,4.2],[1177977600000,4],[1180656000000,3.8],[1183248000000,3.7],[1185926400000,3.4],[1188604800000,3.5],[1191196800000,3.4],[1193875200000,3.1],[1196467200000,3.6],[1199145600000,3.7],[1201824000000,4.1],[1204329600000,4],[1207008000000,3.4],[1209600000000,7.8],[1212278400000,5.5],[1214870400000,4.4],[1217548800000,3.8],[1220227200000,4.7],[1222819200000,5.5],[1225497600000,6.4],[1228089600000,6.4],[1230768000000,6.2],[1233446400000,5.5],[1235865600000,5.9],[1238544000000,6.8],[1241136000000,8.2],[1243814400000,6.7],[1246406400000,6],[1249084800000,4.9],[1251763200000,5.9],[1254355200000,5.4],[1257033600000,5.9],[1259625600000,5.9],[1262304000000,6.1],[1264982400000,5.8],[1267401600000,5.7],[1270080000000,6.4],[1272672000000,7],[1275350400000,6.9],[1277942400000,6.8],[1280620800000,6.9],[1283299200000,6.7],[1285891200000,6.6],[1288569600000,6.6],[1291161600000,7.1],[1293840000000,7.4],[1296518400000,7.6],[1298937600000,7],[1301616000000,6.9],[1304208000000,6.9],[1306886400000,7.2],[1309478400000,7.3],[1312156800000,7.2],[1314835200000,6.8],[1317427200000,6.8],[1320105600000,7],[1322697600000,7.8],[1325376000000,8],[1328054400000,8],[1330560000000,8.5],[1333238400000,8.7],[1335830400000,8.8],[1338508800000,9.1],[1341100800000,8.2],[1343779200000,8],[1346457600000,8.2],[1349049600000,8.8],[1351728000000,9.7],[1354320000000,12],[1356998400000,6.3],[1359676800000,5.8],[1362096000000,5.9],[1364774400000,6.4],[1367366400000,6.7],[1370044800000,6.8],[1372636800000,6.6],[1375315200000,6.7],[1377993600000,6.8],[1380585600000,6.3],[1383264000000,6.2],[1385856000000,6.4],[1388534400000,7.1],[1391212800000,7.3],[1393632000000,7.4],[1396310400000,7.4],[1398902400000,7.4],[1401580800000,7.4],[1404172800000,7.5],[1406851200000,7.2],[1409529600000,7.4],[1412121600000,7.2],[1414800000000,7.3],[1417392000000,7.6],[1420070400000,7.7],[1422748800000,7.9],[1425168000000,7.4],[1427846400000,7.6]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1967-07-01\",\"max\":\"2015-04-01\"},\"type\":\"line\",\"shinyEvents\":{\"selection\":{\"inputId\":\"selection\",\"type\":\"x\"}}},\"evals\":[\"ax_opts.chart.selection.xaxis.min\",\"ax_opts.chart.selection.xaxis.max\"],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_zoom.html","id":null,"dir":"Reference","previous_headings":"","what":"Retrieve zoom information in Shiny — set_input_zoom","title":"Retrieve zoom information in Shiny — set_input_zoom","text":"Retrieve zoom information Shiny","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_zoom.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Retrieve zoom information in Shiny — set_input_zoom","text":"","code":"set_input_zoom(ax, inputId, session = shiny::getDefaultReactiveDomain())"},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_zoom.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Retrieve zoom information in Shiny — set_input_zoom","text":"ax apexchart() htmlwidget object. inputId id used server-side retrieving zoom. session Shiny session.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_zoom.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Retrieve zoom information in Shiny — set_input_zoom","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_zoom.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Retrieve zoom information in Shiny — set_input_zoom","text":"x-axis type datetime, value retrieved class POSIXct.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_input_zoom.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Retrieve zoom information in Shiny — set_input_zoom","text":"","code":"if (interactive()) { run_demo_input(\"zoom\") }"},{"path":"https://dreamrs.github.io/apexcharter/reference/set_tooltip_fixed.html","id":null,"dir":"Reference","previous_headings":"","what":"Fixed tooltip — set_tooltip_fixed","title":"Fixed tooltip — set_tooltip_fixed","text":"Fixed tooltip","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_tooltip_fixed.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Fixed tooltip — set_tooltip_fixed","text":"","code":"set_tooltip_fixed( ax, position = c(\"topLeft\", \"topRight\", \"bottomLeft\", \"bottomRight\"), offsetX = NULL, offsetY = NULL )"},{"path":"https://dreamrs.github.io/apexcharter/reference/set_tooltip_fixed.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Fixed tooltip — set_tooltip_fixed","text":"ax apexchart() htmlwidget object. position Predefined position: \"topLeft\", \"topRight\", \"bottomLeft\" \"bottomRight\". offsetX Sets left offset tooltip container fixed position. offsetY Sets top offset tooltip container fixed position.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_tooltip_fixed.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Fixed tooltip — set_tooltip_fixed","text":"apexchart()htmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/set_tooltip_fixed.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Fixed tooltip — set_tooltip_fixed","text":"","code":"library(apexcharter) data(\"economics\", package = \"ggplot2\") apex( data = tail(economics, 350), mapping = aes(x = date, y = uempmed), type = \"line\" ) %>% set_tooltip_fixed() {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"line\"},\"series\":[{\"name\":\"uempmed\",\"type\":\"line\",\"data\":[[510019200000,6.8],[512697600000,6.7],[515289600000,6.8],[517968000000,7],[520560000000,6.9],[523238400000,7.1],[525916800000,7.4],[528508800000,7],[531187200000,7.1],[533779200000,7.1],[536457600000,6.9],[539136000000,6.6],[541555200000,6.6],[544233600000,7.1],[546825600000,6.6],[549504000000,6.5],[552096000000,6.5],[554774400000,6.4],[557452800000,6],[560044800000,6.3],[562723200000,6.2],[565315200000,6],[567993600000,6.2],[570672000000,6.3],[573177600000,6.4],[575856000000,5.9],[578448000000,5.9],[581126400000,5.8],[583718400000,6.1],[586396800000,5.9],[589075200000,5.7],[591667200000,5.6],[594345600000,5.7],[596937600000,5.9],[599616000000,5.6],[602294400000,5.4],[604713600000,5.4],[607392000000,5.4],[609984000000,5.3],[612662400000,5.4],[615254400000,5.6],[617932800000,5],[620611200000,4.9],[623203200000,4.9],[625881600000,4.8],[628473600000,4.9],[631152000000,5.1],[633830400000,5.3],[636249600000,5.1],[638928000000,4.8],[641520000000,5.2],[644198400000,5.2],[646790400000,5.4],[649468800000,5.4],[652147200000,5.6],[654739200000,5.8],[657417600000,5.7],[660009600000,5.9],[662688000000,6],[665366400000,6.2],[667785600000,6.7],[670464000000,6.6],[673056000000,6.4],[675734400000,6.9],[678326400000,7],[681004800000,7.3],[683683200000,6.8],[686275200000,7.2],[688953600000,7.5],[691545600000,7.8],[694224000000,8.1],[696902400000,8.2],[699408000000,8.3],[702086400000,8.5],[704678400000,8.8],[707356800000,8.7],[709948800000,8.6],[712627200000,8.8],[715305600000,8.6],[717897600000,9],[720576000000,9],[723168000000,9.3],[725846400000,8.6],[728524800000,8.5],[730944000000,8.5],[733622400000,8.4],[736214400000,8.1],[738892800000,8.3],[741484800000,8.2],[744163200000,8.2],[746841600000,8.3],[749433600000,8],[752112000000,8.3],[754704000000,8.3],[757382400000,8.6],[760060800000,9.2],[762480000000,9.3],[765158400000,9.1],[767750400000,9.2],[770428800000,9.3],[773020800000,9],[775699200000,8.9],[778377600000,9.2],[780969600000,10],[783648000000,9],[786240000000,8.7],[788918400000,8],[791596800000,8.1],[794016000000,8.3],[796694400000,8.3],[799286400000,9.1],[801964800000,7.9],[804556800000,8.5],[807235200000,8.3],[809913600000,7.9],[812505600000,8.2],[815184000000,8],[817776000000,8.3],[820454400000,8.3],[823132800000,7.8],[825638400000,8.3],[828316800000,8.6],[830908800000,8.6],[833587200000,8.3],[836179200000,8.3],[838857600000,8.4],[841536000000,8.5],[844128000000,8.3],[846806400000,7.7],[849398400000,7.8],[852076800000,7.8],[854755200000,8.1],[857174400000,7.9],[859852800000,8.3],[862444800000,8],[865123200000,8],[867715200000,8.3],[870393600000,7.8],[873072000000,8.2],[875664000000,7.7],[878342400000,7.6],[880934400000,7.5],[883612800000,7.4],[886291200000,7],[888710400000,6.8],[891388800000,6.7],[893980800000,6],[896659200000,6.9],[899251200000,6.7],[901929600000,6.8],[904608000000,6.7],[907200000000,5.8],[909878400000,6.6],[912470400000,6.8],[915148800000,6.9],[917827200000,6.8],[920246400000,6.8],[922924800000,6.2],[925516800000,6.5],[928195200000,6.3],[930787200000,5.8],[933465600000,6.5],[936144000000,6],[938736000000,6.1],[941414400000,6.2],[944006400000,5.8],[946684800000,5.8],[949363200000,6.1],[951868800000,6],[954547200000,6.1],[957139200000,5.8],[959817600000,5.7],[962409600000,6],[965088000000,6.3],[967766400000,5.2],[970358400000,6.1],[973036800000,6.1],[975628800000,6],[978307200000,5.8],[980985600000,6.1],[983404800000,6.6],[986083200000,5.9],[988675200000,6.3],[991353600000,6],[993945600000,6.8],[996624000000,6.9],[999302400000,7.2],[1001894400000,7.3],[1004572800000,7.7],[1007164800000,8.2],[1009843200000,8.4],[1012521600000,8.3],[1014940800000,8.4],[1017619200000,8.9],[1020211200000,9.5],[1022889600000,11],[1025481600000,8.9],[1028160000000,9],[1030838400000,9.5],[1033430400000,9.6],[1036108800000,9.3],[1038700800000,9.6],[1041379200000,9.6],[1044057600000,9.5],[1046476800000,9.7],[1049155200000,10.2],[1051747200000,9.9],[1054425600000,11.5],[1057017600000,10.3],[1059696000000,10.1],[1062374400000,10.2],[1064966400000,10.4],[1067644800000,10.3],[1070236800000,10.4],[1072915200000,10.6],[1075593600000,10.2],[1078099200000,10.2],[1080777600000,9.5],[1083369600000,9.9],[1086048000000,11],[1088640000000,8.9],[1091318400000,9.2],[1093996800000,9.6],[1096588800000,9.5],[1099267200000,9.7],[1101859200000,9.5],[1104537600000,9.4],[1107216000000,9.2],[1109635200000,9.3],[1112313600000,9],[1114905600000,9.1],[1117584000000,9],[1120176000000,8.8],[1122854400000,9.2],[1125532800000,8.4],[1128124800000,8.6],[1130803200000,8.5],[1133395200000,8.7],[1136073600000,8.6],[1138752000000,9.1],[1141171200000,8.7],[1143849600000,8.4],[1146441600000,8.5],[1149120000000,7.3],[1151712000000,8],[1154390400000,8.4],[1157068800000,8],[1159660800000,7.9],[1162339200000,8.3],[1164931200000,7.5],[1167609600000,8.3],[1170288000000,8.5],[1172707200000,9.1],[1175385600000,8.6],[1177977600000,8.2],[1180656000000,7.7],[1183248000000,8.7],[1185926400000,8.8],[1188604800000,8.7],[1191196800000,8.4],[1193875200000,8.6],[1196467200000,8.4],[1199145600000,9],[1201824000000,8.7],[1204329600000,8.7],[1207008000000,9.4],[1209600000000,7.9],[1212278400000,9],[1214870400000,9.7],[1217548800000,9.7],[1220227200000,10.2],[1222819200000,10.4],[1225497600000,9.8],[1228089600000,10.5],[1230768000000,10.7],[1233446400000,11.7],[1235865600000,12.3],[1238544000000,13.1],[1241136000000,14.2],[1243814400000,17.2],[1246406400000,16],[1249084800000,16.3],[1251763200000,17.8],[1254355200000,18.9],[1257033600000,19.8],[1259625600000,20.1],[1262304000000,20],[1264982400000,19.9],[1267401600000,20.4],[1270080000000,22.1],[1272672000000,22.3],[1275350400000,25.2],[1277942400000,22.3],[1280620800000,21],[1283299200000,20.3],[1285891200000,21.2],[1288569600000,21],[1291161600000,21.9],[1293840000000,21.5],[1296518400000,21.1],[1298937600000,21.5],[1301616000000,20.9],[1304208000000,21.6],[1306886400000,22.4],[1309478400000,22],[1312156800000,22.4],[1314835200000,22],[1317427200000,20.6],[1320105600000,20.8],[1322697600000,20.5],[1325376000000,20.8],[1328054400000,19.7],[1330560000000,19.2],[1333238400000,19.1],[1335830400000,19.9],[1338508800000,20.4],[1341100800000,17.5],[1343779200000,18.4],[1346457600000,18.8],[1349049600000,19.9],[1351728000000,18.6],[1354320000000,17.7],[1356998400000,15.8],[1359676800000,17.2],[1362096000000,17.6],[1364774400000,17.1],[1367366400000,17.1],[1370044800000,17],[1372636800000,16.2],[1375315200000,16.5],[1377993600000,16.5],[1380585600000,16.3],[1383264000000,17.1],[1385856000000,17.3],[1388534400000,15.4],[1391212800000,15.9],[1393632000000,15.8],[1396310400000,15.7],[1398902400000,14.6],[1401580800000,13.8],[1404172800000,13.1],[1406851200000,12.9],[1409529600000,13.4],[1412121600000,13.6],[1414800000000,13],[1417392000000,12.9],[1420070400000,13.2],[1422748800000,12.9],[1425168000000,12],[1427846400000,11.5]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"tooltip\":{\"fixed\":{\"enabled\":true,\"position\":\"topLeft\",\"offsetX\":null,\"offsetY\":null}}},\"auto_update\":{\"series_animate\":true,\"update_options\":false,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":false,\"xaxis\":{\"min\":\"1986-03-01\",\"max\":\"2015-04-01\"},\"type\":\"line\"},\"evals\":[],\"jsHooks\":[]}"},{"path":"https://dreamrs.github.io/apexcharter/reference/spark_box.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a box with a sparkline — spark_box","title":"Create a box with a sparkline — spark_box","text":"Create box sparkline","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/spark_box.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a box with a sparkline — spark_box","text":"","code":"spark_box( data, title = NULL, subtitle = NULL, color = \"#2E93fA\", background = \"#FFF\", type = c(\"area\", \"line\", \"spline\", \"column\"), synchronize = NULL, title_style = NULL, subtitle_style = NULL, width = NULL, height = NULL, elementId = NULL )"},{"path":"https://dreamrs.github.io/apexcharter/reference/spark_box.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a box with a sparkline — spark_box","text":"data data.frame-like object least two columns, first mapped x-axis, second y-axis. title Title display box. subtitle Subtitle display box. color Color chart. background Background color box. type Type chart, currently type supported : \"area\" (default), \"line\", \"spline\", \"column\". synchronize Give common id charts synchronize (tooltip zoom). title_style, subtitle_style list named attributes style title / subtitle, possible values fontSize, fontWeight, fontFamily, color. width, height numeric input pixels. elementId Use explicit element ID widget.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/spark_box.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Create a box with a sparkline — spark_box","text":"apexchartshtmlwidget object.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/spark_box.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"Create a box with a sparkline — spark_box","text":"Shiny use sparkBoxOutput / renderSparkBox render boxes, see example. Boxes CSS class \"apexcharter-spark-box\" need styling.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/spark_box.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a box with a sparkline — spark_box","text":"","code":"library(apexcharter) spark_data <- data.frame( date = Sys.Date() + 1:20, var1 = round(rnorm(20, 50, 10)), var2 = round(rnorm(20, 50, 10)), var3 = round(rnorm(20, 50, 10)) ) spark_box( data = spark_data, title = mean(spark_data$var1), subtitle = \"Variable 1\" ) {\"x\":{\"ax_opts\":{\"chart\":{\"type\":\"area\",\"sparkline\":{\"enabled\":true}},\"series\":[{\"name\":\"var1\",\"type\":\"area\",\"data\":[[1639267200000,61],[1639353600000,53],[1639440000000,67],[1639526400000,56],[1639612800000,28],[1639699200000,53],[1639785600000,43],[1639872000000,52],[1639958400000,63],[1640044800000,62],[1640131200000,69],[1640217600000,54],[1640304000000,67],[1640390400000,49],[1640476800000,48],[1640563200000,63],[1640649600000,27],[1640736000000,40],[1640822400000,39],[1640908800000,43]]}],\"dataLabels\":{\"enabled\":false},\"stroke\":{\"curve\":\"straight\",\"width\":2},\"yaxis\":{\"decimalsInFloat\":2,\"labels\":{\"style\":{\"colors\":\"#848484\"}},\"show\":false},\"xaxis\":{\"type\":\"datetime\",\"labels\":{\"style\":{\"colors\":\"#848484\"}}},\"colors\":[\"#2E93fA\"],\"title\":{\"text\":51.85,\"style\":{\"fontSize\":\"24px\"}},\"subtitle\":{\"text\":\"Variable 1\",\"style\":{\"fontSize\":\"14px\"}}},\"auto_update\":{\"series_animate\":true,\"update_options\":true,\"options_animate\":true,\"options_redrawPaths\":true,\"update_synced_charts\":false},\"sparkbox\":{\"color\":\"#2E93fA\",\"background\":\"#FFF\"},\"xaxis\":{\"min\":\"2021-12-12\",\"max\":\"2021-12-31\"},\"type\":\"area\"},\"evals\":[],\"jsHooks\":[]} # In Shiny if (interactive()) { run_sparkbox_demo() }"},{"path":"https://dreamrs.github.io/apexcharter/reference/unhcr_ts.html","id":null,"dir":"Reference","previous_headings":"","what":"UNHCR data by continent of origin — unhcr_ts","title":"UNHCR data by continent of origin — unhcr_ts","text":"dataset contains data UNHCR's populations concern summarised continent origin.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/unhcr_ts.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"UNHCR data by continent of origin — unhcr_ts","text":"","code":"unhcr_ts"},{"path":"https://dreamrs.github.io/apexcharter/reference/unhcr_ts.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"UNHCR data by continent of origin — unhcr_ts","text":"data frame 913 observations following 4 variables: year Year concerned. population_type Populations concern : Refugees, Asylum-seekers, Internally displaced persons (IDPs), Returned refugees, Returned IDPs, Stateless persons, Others concern. continent_origin Continent residence population. n Number people concerned.","code":""},{"path":"https://dreamrs.github.io/apexcharter/reference/unhcr_ts.html","id":"source","dir":"Reference","previous_headings":"","what":"Source","title":"UNHCR data by continent of origin — unhcr_ts","text":"UNHCR (UN Refugee Agency) (https://www.unhcr.org/)","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"apexcharter-030","dir":"Changelog","previous_headings":"","what":"apexcharter 0.3.0","title":"apexcharter 0.3.0","text":"CRAN release: 2021-10-21 Updated ApexCharts.js 3.29.0 Internal: use {packer} manage JavaScript assets. d3.format JavaScript functions now available browser format() formatLocale().","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"apexcharter-020","dir":"Changelog","previous_headings":"","what":"apexcharter 0.2.0","title":"apexcharter 0.2.0","text":"CRAN release: 2021-05-11 Updated ApexCharts.js 3.26.2 New functions ax_facet_wrap() ax_facet_grid() create faceting charts. New function apex_grid() combine several charts grid.","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"apexcharter-018","dir":"Changelog","previous_headings":"","what":"apexcharter 0.1.8","title":"apexcharter 0.1.8","text":"CRAN release: 2020-11-18 Updated ApexCharts.js 3.22.2","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"bugfixes-0-1-8","dir":"Changelog","previous_headings":"","what":"Bugfixes","title":"apexcharter 0.1.8","text":"Fixed bad JavaScript namespace Fixed bug groups scatter chart","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"apexcharter-017","dir":"Changelog","previous_headings":"","what":"apexcharter 0.1.7","title":"apexcharter 0.1.7","text":"CRAN release: 2020-10-16 Updated ApexCharts.js 3.22.0 New chart type: treemap, see vignette example. New function ax_colors_manual() set color mapping manually. apex() now accept polarArea type chart.","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"apexcharter-016","dir":"Changelog","previous_headings":"","what":"apexcharter 0.1.6","title":"apexcharter 0.1.6","text":"CRAN release: 2020-09-09 Updated ApexCharts.js 3.20.1 New functions add_line() add_smooth_line() add simple trend line charts (scatter & bars). New Shiny input: export, retrieve charts base64 dataURI.","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"apexcharter-015","dir":"Changelog","previous_headings":"","what":"apexcharter 0.1.5","title":"apexcharter 0.1.5","text":"CRAN release: 2020-06-23 Updated ApexCharts.js 3.18.1 Support candlestick charts apex(). apex() new argument synchronize easily synchronize charts together. apex() new charts type: area-spline, area-step step.","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"new-functions-0-1-5","dir":"Changelog","previous_headings":"","what":"New functions","title":"apexcharter 0.1.5","text":"spark_box create boxes sparkline, see corresponding vignette details. add_shade(), add_shade_weekend(), add_event() add annotations time-series charts. add_hline(), add_vline(), add_point() add annotations charts. set_tooltip_fixed() fix tooltip specific position.","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"bugfixes-0-1-5","dir":"Changelog","previous_headings":"","what":"Bugfixes","title":"apexcharter 0.1.5","text":"Xaxis datetime now display properly columns bars. Dark mode wasnt activated properly ax_theme().","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"apexcharter-014","dir":"Changelog","previous_headings":"","what":"apexcharter 0.1.4","title":"apexcharter 0.1.4","text":"CRAN release: 2020-03-31 Upgraded ApexCharts.js 3.17.1 Fixed bug grouped bar charts different levels groups. New vignette explain sync charts. New vignette show shiny usage. Added functions set_input_click(), set_input_zoom() set_input_selection() add interaction Shiny applications.","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"apexcharter-013","dir":"Changelog","previous_headings":"","what":"apexcharter 0.1.3","title":"apexcharter 0.1.3","text":"CRAN release: 2019-11-27 Upgraded ApexCharts.js 3.10.1 New function format_num() format labels y-axis tooltip example. Added localization configs file, see ?ax_chart examples.","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"apexcharter-012","dir":"Changelog","previous_headings":"","what":"apexcharter 0.1.2","title":"apexcharter 0.1.2","text":"CRAN release: 2019-08-22 Upgraded ApexCharts.js 3.8.2 Set parent container height 0 default (fix #2).","code":""},{"path":"https://dreamrs.github.io/apexcharter/news/index.html","id":"apexcharter-011","dir":"Changelog","previous_headings":"","what":"apexcharter 0.1.1","title":"apexcharter 0.1.1","text":"CRAN release: 2019-07-28 First CRAN release: create interactive chart JavaScript ApexCharts library. Types graphics available : bars, columns, splines, lines, scatter, pie, donuts, heatmap, gauge.","code":""}]