-
The default color of
theme_nightblue()
has been changed from #FF7AFD to #D81E5B -
The background color of
theme_ggcharts()
has been changed from #F4F7FC to #C7C7C7. In addition, the foreground color has been changed from #002451 to #080708.
- The themes only set the
plot.title.position
element if a version of{ggplot2}
>= 3.3.0 is installed. This fixes #75.
-
Two new vignettes:
customize
(#54) andthemes
(#69) -
Two additional datasets:
popeurope
andpopch
(#60) -
The default theme has been tweaked and is now exported as
theme_ggcharts()
-
Additionally, three other new themes have been created:
theme_ng()
,theme_nightblue()
andtheme_hermit()
-
The default
ggcharts
theme can be changed usingggcharts_set_theme()
-
highlight_spec()
has been introduced to enable full customization when highlighting -
The
limit
argument ofbar_chart()
,lollipop_chart()
anddumbbell_chart()
has been deprecated in favor oftop_n
(#62) -
lollipop_chart()
andbar_chart()
display the number of cases in each distinct value ofx
if they
argument is missing (#48) -
lollipop_chart()
andbar_chart()
gained another
argument. If a threshold is set andother = TRUE
all categories with values less than the threshold are aggregated and displayed at the bottom of the chart (#67) -
Error messages are thrown using
rlang::abort()
rather thanstop()
(#32) -
A legend used to pop up when the theme of a chart with highlights was changed. This has been fixed in #41