Skip to content

Commit a7ae60b

Browse files
committed
Web content. Changed chart titles.
1 parent b025315 commit a7ae60b

23 files changed

+50
-54
lines changed

test/integration/test_cases/web_content/templates/composition_percentage_column_3dis_1con.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const testSteps = [
1919
}),
2020
chart => chart.animate({
2121
config: {
22-
title: 'Check relative differences between the elements',
22+
title: '100% Stacked Column Chart',
2323
align: 'stretch'
2424
}
2525
}),
@@ -32,7 +32,7 @@ const testSteps = [
3232
}
3333
},
3434
},
35-
title: '...or the elements separatelly',
35+
title: 'Trellis Column Chart',
3636
align: 'min',
3737
split: true
3838
}

test/integration/test_cases/web_content/templates/composition_percentage_column_stream_3dis_1con.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const testSteps = [
2828
color: { set: ['Country'] },
2929
noop: { set: null }
3030
},
31-
title: 'Drill down & check the elements separatelly',
31+
title: 'Trellis Column Chart',
3232
split: true,
3333
}
3434
}),
@@ -41,13 +41,13 @@ const testSteps = [
4141
}
4242
}
4343
},
44-
title: '...or together',
44+
title: 'Stacked Column Chart',
4545
split: false
4646
}
4747
}),
4848
chart => chart.animate({
4949
config: {
50-
title: '...or the relative differences between these',
50+
title: '100% Column Chart',
5151
align: 'stretch'
5252
}
5353
})

test/integration/test_cases/web_content/templates/distribution_relationship_dotplot_dotplot.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const testSteps = [
1010
color: { set: ['Joy factors'] },
1111
noop: { set: ['Country_code'] } //The noop channel splits the markers as all the other channels but will have no effect on the markers’ appearance.
1212
},
13-
title: 'Distribution',
13+
title: 'Dot Plot',
1414
geometry: 'circle'
1515
},
1616
style: {
@@ -27,7 +27,7 @@ const testSteps = [
2727
x: { set: ['Joy factors', 'Value 6 (+/-)'] },
2828
label: { set: ['Country_code'] }
2929
},
30-
title: 'Relationship'
30+
title: 'Scatter Plot'
3131
}
3232
})
3333
];

test/integration/test_cases/web_content/templates/drilldown_aggregate_line.mjs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ const testSteps = [
2323
channels: {
2424
color: { set: ['Country'] },
2525
size: { set: null } // We don’t need this dimension here anymore since it’s already on the 'color' channel.
26-
},
27-
title: 'Drill Down'
26+
}
2827
}
2928
}),
3029
chart => chart.animate({
@@ -35,8 +34,7 @@ const testSteps = [
3534
max: 'auto' // Setting back the y-axis range to the default value.
3635
}
3736
},
38-
},
39-
title: 'Drilled Line Chart'
37+
}
4038
}
4139
})
4240
];

test/integration/test_cases/web_content/templates/merge_split_area_stream_3dis_1con.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const testSteps = [
2828
}
2929
}
3030
},
31-
title: 'Check the elements separatelly',
31+
title: 'Trellis Area Chart',
3232
split: true,
3333
align: 'min'
3434
}

test/integration/test_cases/web_content/templates/merge_split_bar.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const testSteps = [
1818
}),
1919
chart => chart.animate({
2020
config: {
21-
title: 'Check the elements separatelly',
21+
title: 'Trellis Bar Chart',
2222
split: true
2323
}
2424
})

test/integration/test_cases/web_content/templates/merge_split_radial_stacked_rectangle_2dis_1con.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const testSteps = [
1414
},
1515
color: { set: ['Country'] }
1616
},
17-
title: 'Stacked Radial Bar Chart',
17+
title: 'Radial Bar Chart',
1818
coordSystem: 'polar'
1919
},
2020
style: { // This chart type no needs axles and axis labels, except small size yAxis labels.
@@ -35,7 +35,7 @@ const testSteps = [
3535
}),
3636
chart => chart.animate({
3737
config: {
38-
title: 'Splitted Radial Bar Chart',
38+
title: 'Trellis Radial Bar Chart',
3939
split: true
4040
}
4141
})

test/integration/test_cases/web_content/templates/orientation_circle.mjs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const testSteps = [
1010
lightness: { set: ['Joy factors'] }, // Lightness channel not necessary but helps to fallow during the animation how spreading categories of the first chart.
1111
noop: { set: ['Year'] } //The noop channel splits the markers as all the other channels but will have no effect on the markers’ appearance.
1212
},
13-
title: 'Distribution by Y',
13+
title: 'Dot Plot',
1414
geometry: 'circle'
1515
}
1616
}),
@@ -20,8 +20,7 @@ const testSteps = [
2020
x: { set: ['Year'] },
2121
y: { set: ['Value 5 (+/-)'] },
2222
noop: { set: ['Joy factors'] }
23-
},
24-
title: 'Distribution by X'
23+
}
2524
}
2625
})
2726
];

test/integration/test_cases/web_content/templates/orientation_dot_circle.mjs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const testSteps = [
1010
noop: { set: ['Joy factors'] }, //The noop channel splits the markers as all the other channels but will have no effect on the markers’ appearance.
1111
lightness: { set: ['Year'] } // Lightness channel is used to assist the viewer in following the animation.
1212
},
13-
title: 'Relationship by X, Y',
13+
title: 'Scatter Plot',
1414
geometry: 'circle'
1515
}
1616
}),
@@ -20,7 +20,7 @@ const testSteps = [
2020
x: { set: ['Year'] },
2121
y: { set: ['Value 6 (+/-)'] }
2222
},
23-
title: 'Distribution by X',
23+
title: 'Dot Plot',
2424
legend: 'lightness'
2525
}
2626
}),
@@ -30,7 +30,7 @@ const testSteps = [
3030
x: { set: ['Value 5 (+/-)'] },
3131
y: { set: ['Value 6 (+/-)'] }
3232
},
33-
title: 'Relationship by X, Y'
33+
title: 'Scatter Plot'
3434
}
3535
}),
3636
chart => chart.animate({
@@ -40,7 +40,7 @@ const testSteps = [
4040
y: { set: ['Joy factors'] },
4141
noop: { set: null }
4242
},
43-
title: 'Distribution by Y'
43+
title: 'Dot Plot'
4444
}
4545
}),
4646
chart => chart.animate({
@@ -50,7 +50,7 @@ const testSteps = [
5050
y: { set: ['Value 6 (+/-)'] },
5151
noop: { set: ['Joy factors'] },
5252
},
53-
title: 'Relationship by X, Y'
53+
title: 'Scatter Plot'
5454
}
5555
})
5656
];

test/integration/test_cases/web_content/templates/orientation_rectangle.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const testSteps = [
2020
y: { set: ['Categ. Parent'] },
2121
},
2222
legend: null,
23-
title: 'Values can be stacked by the other axis too.',
23+
title: 'Stacked Bar Chart',
2424
}
2525
}),
2626
chart => chart.animate({

0 commit comments

Comments
 (0)