Skip to content

Commit

Permalink
#68 : reduce size
Browse files Browse the repository at this point in the history
  • Loading branch information
bthieurmel committed Feb 20, 2018
1 parent eb4d3db commit 1408dbb
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions inst/application_bp/src/server/02_hypotheses.R
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ output$bilan_1_1 <- renderAmCharts({
data_bilan <- data_bilan()
amPie(data = data_bilan$pie_conso_2025, show_values = TRUE,
creditsPosition = "bottom-left",
innerRadius = 60, radius = 100, legend = FALSE,
innerRadius = 40, radius = 80, legend = FALSE,
labelText = "[[value]]",
labelRadius = -20, bringToFront = TRUE,
labelColor = "white")
Expand All @@ -229,7 +229,7 @@ output$bilan_1_1 <- renderAmCharts({
output$bilan_1_2 <- renderAmCharts({
data_bilan <- data_bilan()
suppressWarnings(amPie(data = data_bilan$pie_prod_2025, show_values = TRUE,
innerRadius = 100, radius = 140,
innerRadius = 80, radius = 120,
legend = FALSE, creditsPosition = "bottom-left",
labelText = "[[value]]",
labelRadius = -20, bringToFront = TRUE,
Expand All @@ -243,7 +243,7 @@ output$bilan_1_2 <- renderAmCharts({
y =20),
list(
text = paste(data_bilan$twh_2025, "TWh"),
size = 18,
size = 14,
color = "#404040",
x = 0,
align = "center",
Expand All @@ -267,7 +267,7 @@ output$bilan_2_1 <- renderAmCharts({
data_bilan <- data_bilan()
amPie(data = data_bilan$pie_conso_2030, show_values = TRUE,
creditsPosition = "bottom-left",
innerRadius = 60, radius = 100, legend = FALSE,
innerRadius = 40, radius = 80, legend = FALSE,
labelText = "[[value]]",
labelRadius = -20, bringToFront = TRUE,
labelColor = "white")
Expand All @@ -276,7 +276,7 @@ output$bilan_2_1 <- renderAmCharts({
output$bilan_2_2 <- renderAmCharts({
data_bilan <- data_bilan()
suppressWarnings(amPie(data = data_bilan$pie_prod_2030, show_values = TRUE,
innerRadius = 100, radius = 140,
innerRadius = 80, radius = 120,
legend = FALSE, creditsPosition = "bottom-left",
labelText = "[[value]]",
labelRadius = -20, bringToFront = TRUE,
Expand All @@ -290,7 +290,7 @@ output$bilan_2_2 <- renderAmCharts({
y =20),
list(
text = paste(data_bilan$twh_2030, "TWh"),
size = 18,
size = 14,
color = "#404040",
x = 0,
align = "center",
Expand All @@ -314,7 +314,7 @@ output$bilan_3_1 <- renderAmCharts({
data_bilan <- data_bilan()
amPie(data = data_bilan$pie_conso_2035, show_values = TRUE,
creditsPosition = "bottom-left",
innerRadius = 60, radius = 100, legend = FALSE,
innerRadius = 40, radius = 80, legend = FALSE,
labelText = "[[value]]",
labelRadius = -20, bringToFront = TRUE,
labelColor = "white")
Expand All @@ -323,7 +323,7 @@ output$bilan_3_1 <- renderAmCharts({
output$bilan_3_2 <- renderAmCharts({
data_bilan <- data_bilan()
suppressWarnings(amPie(data = data_bilan$pie_prod_2035, show_values = TRUE,
innerRadius = 100, radius = 140,
innerRadius = 80, radius = 120,
legend = FALSE, creditsPosition = "bottom-left",
labelText = "[[value]]",
labelRadius = -20, bringToFront = TRUE,
Expand All @@ -337,7 +337,7 @@ output$bilan_3_2 <- renderAmCharts({
y =20),
list(
text = paste(data_bilan$twh_2035, "TWh"),
size = 18,
size = 14,
color = "#404040",
x = 0,
align = "center",
Expand Down

0 comments on commit 1408dbb

Please sign in to comment.