Skip to content

Commit

Permalink
10/10
Browse files Browse the repository at this point in the history
  • Loading branch information
puneetkathar1 committed Oct 9, 2022
1 parent 024b232 commit 41b43b1
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions test/fixtures/controller.line/pointStyle/indexable.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = {
datasets: [
{
// option in dataset
data: [0, 5, 10, null, -10, -5, null],
data: [0, 5, 10, null, -10, -5, 0],
pointBackgroundColor: '#ff0000',
pointBorderColor: '#ff0000',
pointStyle: [
Expand All @@ -16,12 +16,12 @@ module.exports = {
'dash',
'line',
'rect',
false
'false'
]
},
{
// option in element (fallback)
data: [4, -5, -10, null, 10, 5, null],
data: [4, -5, -10, null, 10, 5, -4],
}
]
},
Expand Down
Binary file modified test/fixtures/controller.line/pointStyle/indexable.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions test/fixtures/controller.radar/pointStyle/indexable.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = {
datasets: [
{
// option in dataset
data: [0, 5, 10, null, -10, -5, null],
data: [0, 5, 10, null, -10, -5, 0],
pointBackgroundColor: '#ff0000',
pointBorderColor: '#ff0000',
pointStyle: [
Expand All @@ -16,12 +16,12 @@ module.exports = {
'dash',
'line',
'rect',
false
'false'
]
},
{
// option in element (fallback)
data: [4, -5, -10, null, 10, 5, null],
data: [4, -5, -10, null, 10, 5, -4],
}
]
},
Expand Down
Binary file modified test/fixtures/controller.radar/pointStyle/indexable.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions test/fixtures/element.point/rotation.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
var gradient;

var datasets = ['circle', 'cross', 'crossRot', 'dash', 'line', 'rect', 'rectRounded', 'rectRot', 'star', 'triangle', false].map(function(style, y) {
var datasets = ['circle', 'cross', 'crossRot', 'dash', 'line', 'rect', 'rectRounded', 'rectRot', 'star', 'triangle', 'false'].map(function(style, y) {
return {
pointStyle: style,
data: Array.apply(null, Array(17)).map(function(v, x) {
return {x: x, y: 10 - y};
return {x: x, y: 11 - y};
})
};
});
Expand Down
Binary file modified test/fixtures/element.point/rotation.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion test/fixtures/plugin.tooltip/point-style.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const pointStyles = ['circle', 'cross', 'crossRot', 'dash', 'line', 'rect', 'rectRounded', 'rectRot', 'star', 'triangle', false];
const pointStyles = ['circle', 'cross', 'crossRot', 'dash', 'line', 'rect', 'rectRounded', 'rectRot', 'star', 'triangle', 'false'];

function newDataset(pointStyle, i) {
return {
Expand Down
Binary file modified test/fixtures/plugin.tooltip/point-style.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 41b43b1

Please sign in to comment.