Skip to content

Commit 844aca6

Browse files
committed
doc: comments updated
1 parent 43c1e03 commit 844aca6

33 files changed

+51
-51
lines changed

test/integration/test_cases/web_content/sample_static/cartesian/column_grouped_rectangle_negative_2dis_1con.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const testSteps = [
1212
},
1313
title: 'Grouped Column Chart'
1414
},
15-
style: { // This chart type needs special angle for small labels.
15+
style: { // Labels have to be rotated on this chart.
1616
plot: {
1717
marker: {
1818
label: {

test/integration/test_cases/web_content/sample_static/cartesian/column_stacked_rectangle_negative_2dis_1con.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const testSteps = [
1212
},
1313
title: 'Stacked Column Chart'
1414
},
15-
style: { // This chart type needs special angle for small labels.
15+
style: { // Labels have to be rotated on this chart.
1616
plot: {
1717
xAxis: {
1818
label: {

test/integration/test_cases/web_content/sample_static/cartesian/histogram_rectangle_negative_1dis_1con.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const testSteps = [
1212
title: 'Histogram',
1313
align: 'none'
1414
},
15-
style: { // This chart type no needs space between markes.
15+
style: { // Spaces between markers should be eliminated on this chart.
1616
'plot.marker.rectangleSpacing': 0.07
1717
}
1818
})

test/integration/test_cases/web_content/sample_static/cartesian/waterfall_rectangle_negative_1dis_1con.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const testSteps = [
66
config: {
77
channels: {
88
x: { set: ['Year'] },
9-
y: { set: ['Year', 'Value 5 (+/-)'] }, // Repeated data series (Year) on both axles builds up waterfall positions of the markers.
9+
y: { set: ['Year', 'Value 5 (+/-)'] }, // Adding the same dimension (Year) on both axes is how you create a Waterfall Chart in Vizzu.
1010
label: { set: ['Value 5 (+/-)'] }
1111
},
1212
title: 'Waterfall Chart',

test/integration/test_cases/web_content/sample_static/polar/coxcomb_stacked_rectangle_2dis_1con.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const testSteps = [
1212
title: 'Nightingale (Coxcomb) Chart',
1313
coordSystem: 'polar'
1414
},
15-
style: { // This chart type no needs yAxis and yAxis-labels.
15+
style: { // y-axis and its labels are unnecessary on these types of charts.
1616
plot: {
1717
yAxis: {
1818
title: {

test/integration/test_cases/web_content/sample_static/polar/donut_rectangle_1dis_1con.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ const testSteps = [
66
config: {
77
channels: {
88
x: { set: ['Joy factors', 'Value 2 (+)'] },
9-
y: { range: { min: '-200%' } }, // Set the radius of the empty center-circle.
9+
y: { range: { min: '-200%' } }, // Setting the radius of the empty circle in the centre.
1010
color: { set: ['Joy factors'] },
1111
label: { set: ['Value 2 (+)'] }
1212
},
1313
title: 'Donut Chart',
1414
coordSystem: 'polar'
1515
},
16-
style: { // This chart type no needs axles and axis labels, except bigger size marker-labels.
16+
style: { // All axes and axis labels are unnecessary on these types of charts. Meanwhile the marker labels are enlarged.
1717
plot: {
1818
marker: {
1919
label: {

test/integration/test_cases/web_content/sample_static/polar/pie_rectangle_1dis_1con.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const testSteps = [
1212
title: 'Pie Chart',
1313
coordSystem: 'polar'
1414
},
15-
style: { // This chart type no needs axles and axis labels, except bigger size marker-labels.
15+
style: { // All axes and axis labels are unnecessary on these types of charts. Meanwhile the marker labels are enlarged.
1616
plot: {
1717
marker: {
1818
label: {

test/integration/test_cases/web_content/sample_static/polar/radial_rectangle_1dis_1con.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ const testSteps = [
88
x: { set: ['Value 2 (+)'] },
99
y: {
1010
set: ['Joy factors'],
11-
range: { min: '-30%' } // Set the radius of the empty center-circle.
11+
range: { min: '-30%' } // Setting the radius of the empty circle in the centre.
1212
},
1313
color: { set: ['Joy factors'] },
1414
label: { set: ['Value 2 (+)'] }
1515
},
1616
title: 'Radial Bar Chart',
1717
coordSystem: 'polar'
1818
},
19-
style: { // This chart type no needs axles and axis labels, except yAxis-labels.
19+
style: { // All axes and axis labels are unnecessary on these types of charts, except for the labels of the y-axis.
2020
plot: {
2121
yAxis: {
2222
color: '#ffffff00',

test/integration/test_cases/web_content/sample_static/polar/radial_stacked_rectangle_2dis_1con.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const testSteps = [
88
x: { set: ['Country', 'Value 2 (+)'] },
99
y: {
1010
set: ['Year'],
11-
range: { min: '-20%' } // Set the radius of the empty center-circle.
11+
range: { min: '-20%' } // Setting the radius of the empty circle in the centre.
1212
},
1313
color: { set: ['Country'] },
1414
lightness: { set: ['Year'] }

test/integration/test_cases/web_content/sample_static/polar/spiderweb_area_1dis_1con.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ const testSteps = [
88
x: { set: ['Year'] },
99
y: {
1010
set: ['$exists', 'Value 2 (+)'],
11-
range: { max: '130%' } // Set enought space for tangential labels.
11+
range: { max: '130%' } // Set enough space for tangential labels.
1212
},
1313
label: { set: ['Value 2 (+)'] },
1414
},
1515
title: 'Polar Area Chart',
1616
geometry: 'area',
1717
coordSystem: 'polar',
1818
},
19-
style: { // This chart type no needs yAxis and yAxis-labels.
19+
style: { // y-axis and its labels are unnecessary on these types of charts.
2020
plot: {
2121
marker: {
2222
label: {

0 commit comments

Comments
 (0)