Skip to content

Commit

Permalink
Update barplot style
Browse files Browse the repository at this point in the history
  • Loading branch information
solenn-tl committed Oct 30, 2023
1 parent bf31ba5 commit 76909f2
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions stats.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,18 @@ function statsCountByYear(graphname_){
const data = [{
x: dates,
y: counts,
type: 'bar'
type: 'bar',
marker: {color: 'purple'},
}];

const layout = {
title: 'Nombre d\'entrées d\'annuaires extraites par année',
title: {text:'Nombre d\'entrées d\'annuaires extraites par année',
font:{
family:'Verdana',
size:15,
color:'black'
}
},
xaxis: {
title: 'Année'
},
Expand Down

0 comments on commit 76909f2

Please sign in to comment.