Skip to content

Commit

Permalink
Fix indentation (#11159)
Browse files Browse the repository at this point in the history
Changed indentation from 4 spaces to 2 spaces.
  • Loading branch information
stirlhoss authored Jun 2, 2022
1 parent f068ba4 commit a460863
Showing 1 changed file with 49 additions and 49 deletions.
98 changes: 49 additions & 49 deletions app/views/stats/_range.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -183,58 +183,58 @@ var questions = [<%= @questions %>];
var answers = [<%= @answers %>];

var options = {
chart: {
type: 'bar',
height: 130,
width: '90%',
stacked: true,
stackType: '100%'
chart: {
type: 'bar',
height: 130,
width: '90%',
stacked: true,
stackType: '100%'
},
plotOptions: {
bar: {
horizontal: true,
},
plotOptions: {
bar: {
horizontal: true,
},
},
stroke: {
width: 1,
colors: ['#fff']
},
series: [{
name: 'Questions asked',
data: questions
},{
name: 'Questions answered',
data: answers
}],
fill: {
opacity: 1
},
title: {
text: "Questions asked vs Answered in this period",
},

legend: {
show: false,
},
grid: {
show: false,
},
xaxis: {
labels: {
show: false,
},
stroke: {
width: 1,
colors: ['#fff']
axisBorder: {
show: false
},
series: [{
name: 'Questions asked',
data: questions
},{
name: 'Questions answered',
data: answers
}],
fill: {
opacity: 1
},
title: {
text: "Questions asked vs Answered in this period",
},

legend: {
show: false,
},
grid: {
show: false,
},
xaxis: {
labels: {
show: false,
},
axisBorder: {
show: false
},
lines: {
show: false,
}
},
yaxis: {
labels: {
show: false,
}
}
lines: {
show: false,
}
},
yaxis: {
labels: {
show: false,
}
}

}

Expand Down

0 comments on commit a460863

Please sign in to comment.