Skip to content

Commit fc910fa

Browse files
committed
Change graph sizing before beginning UI configuration
1 parent b5823c5 commit fc910fa

9 files changed

Lines changed: 16 additions & 126 deletions

Chronos Slide Deck Notes.rtf

Lines changed: 0 additions & 110 deletions
This file was deleted.

app/charts/latency-chart.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ const LatencyChart = (props) => {
3131
},
3232
}]}
3333
layout = {{
34-
width: 500,
35-
height: 500,
34+
width: 400,
35+
height: 400,
3636
paper_bgcolor: '#fffbe0',
3737
plot_bgcolor: '#fffbe0',
3838
showlegend: true,

app/charts/memory-chart.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ const MemoryChart = (props) => {
6767
{label: xAxis},
6868
]}
6969
layout = {{
70-
width: 500,
71-
height: 500,
70+
width: 400,
71+
height: 400,
7272
paper_bgcolor: '#fffbe0',
7373
plot_bgcolor: '#fffbe0',
7474
legend: {

app/charts/microservice-traffic.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ const MicroServiceTraffic = (props) => {
9494
}]}
9595
layout = {
9696
{
97-
width: 500,
98-
height: 500,
97+
width: 400,
98+
height: 400,
9999
paper_bgcolor: '#fffbe0',
100100
plot_bgcolor: '#fffbe0',
101101
legend: {

app/charts/processes-chart.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ const ProcessesChart = (props) => {
7171
{label: communicationLabel},
7272
]}
7373
layout = {{
74-
width: 500,
75-
height: 500,
74+
width: 400,
75+
height: 400,
7676
paper_bgcolor: '#fffbe0',
7777
plot_bgcolor: '#fffbe0',
7878
legend: {

app/charts/request-type-chart.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ const RequestTypesChart = (props) => {
4141
},
4242
}]}
4343
layout = {{
44-
height: 500,
45-
width: 500,
44+
height: 400,
45+
width: 400,
4646
displaylogo: false,
4747
paper_bgcolor: '#fffbe0',
4848
legend: {

app/charts/response-code-chart.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ const ResponseCodeChart = (props) => {
7272
}
7373
}]}
7474
layout = {{
75-
height: 500,
76-
width: 500,
75+
height: 400,
76+
width: 400,
7777
displaylogo: false,
7878
paper_bgcolor: '#fffbe0',
7979
legend: {

app/charts/speed-chart.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ const SpeedChart = (props) => {
5050
},
5151
}]}
5252
layout = {{
53-
height: 500,
54-
width: 500,
53+
height: 400,
54+
width: 400,
5555
paper_bgcolor: '#fffbe0',
5656
legend: {
5757
orientation: 'h',

app/charts/temperature-chart.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ const TemperatureChart = (props) => {
3838
}]}
3939
layout = {
4040
{
41-
width: 500,
42-
height: 500,
41+
width: 400,
42+
height: 400,
4343
paper_bgcolor: '#fffbe0',
4444
plot_bgcolor: '#fffbe0',
4545
legend: {

0 commit comments

Comments
 (0)