-
Notifications
You must be signed in to change notification settings - Fork 11.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow specifying spanGaps as number (max distance) #6993
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,150 @@ | ||
<!doctype html> | ||
<html> | ||
|
||
<head> | ||
<title>Time Scale Point Data</title> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/moment.min.js"></script> | ||
<script src="../../../dist/Chart.min.js"></script> | ||
<script src="../../utils.js"></script> | ||
<style> | ||
canvas { | ||
-moz-user-select: none; | ||
-webkit-user-select: none; | ||
-ms-user-select: none; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div style="width:75%;"> | ||
<canvas id="canvas"></canvas> | ||
</div> | ||
<br> | ||
<br> | ||
<button id="randomizeData">Randomize Data</button> | ||
<button id="addData">Add Data</button> | ||
<button id="removeData">Remove Data</button> | ||
<script> | ||
function newDate(days) { | ||
return moment().add(days, 'd').toDate(); | ||
} | ||
|
||
function newDateString(days) { | ||
return moment().add(days, 'd').format(); | ||
} | ||
|
||
var color = Chart.helpers.color; | ||
var config = { | ||
type: 'line', | ||
data: { | ||
datasets: [{ | ||
label: 'Dataset with string point data', | ||
backgroundColor: color(window.chartColors.red).alpha(0.5).rgbString(), | ||
borderColor: window.chartColors.red, | ||
fill: false, | ||
data: [{ | ||
x: newDateString(0), | ||
y: randomScalingFactor() | ||
}, { | ||
x: newDateString(2), | ||
y: randomScalingFactor() | ||
}, { | ||
x: newDateString(4), | ||
y: randomScalingFactor() | ||
}, { | ||
x: newDateString(6), | ||
y: randomScalingFactor() | ||
}], | ||
}, { | ||
label: 'Dataset with date object point data', | ||
backgroundColor: color(window.chartColors.blue).alpha(0.5).rgbString(), | ||
borderColor: window.chartColors.blue, | ||
fill: false, | ||
data: [{ | ||
x: newDate(0), | ||
y: randomScalingFactor() | ||
}, { | ||
x: newDate(2), | ||
y: randomScalingFactor() | ||
}, { | ||
x: newDate(5), | ||
y: randomScalingFactor() | ||
}, { | ||
x: newDate(6), | ||
y: randomScalingFactor() | ||
}] | ||
}] | ||
}, | ||
options: { | ||
spanGaps: 1000 * 60 * 60 * 24 * 2, // 2 days | ||
responsive: true, | ||
title: { | ||
display: true, | ||
text: 'Chart.js Time - spanGaps: 172800000 (2 days in ms)' | ||
}, | ||
scales: { | ||
x: { | ||
type: 'time', | ||
display: true, | ||
scaleLabel: { | ||
display: true, | ||
labelString: 'Date' | ||
}, | ||
ticks: { | ||
major: { | ||
fontStyle: 'bold', | ||
fontColor: '#FF0000' | ||
} | ||
} | ||
}, | ||
y: { | ||
display: true, | ||
scaleLabel: { | ||
display: true, | ||
labelString: 'value' | ||
} | ||
} | ||
} | ||
} | ||
}; | ||
|
||
window.onload = function() { | ||
var ctx = document.getElementById('canvas').getContext('2d'); | ||
window.myLine = new Chart(ctx, config); | ||
}; | ||
|
||
document.getElementById('randomizeData').addEventListener('click', function() { | ||
config.data.datasets.forEach(function(dataset) { | ||
dataset.data.forEach(function(dataObj) { | ||
dataObj.y = randomScalingFactor(); | ||
}); | ||
}); | ||
|
||
window.myLine.update(); | ||
}); | ||
document.getElementById('addData').addEventListener('click', function() { | ||
if (config.data.datasets.length > 0) { | ||
config.data.datasets[0].data.push({ | ||
x: newDateString(config.data.datasets[0].data.length + 2), | ||
y: randomScalingFactor() | ||
}); | ||
config.data.datasets[1].data.push({ | ||
x: newDate(config.data.datasets[1].data.length + 2), | ||
y: randomScalingFactor() | ||
}); | ||
|
||
window.myLine.update(); | ||
} | ||
}); | ||
|
||
document.getElementById('removeData').addEventListener('click', function() { | ||
config.data.datasets.forEach(function(dataset) { | ||
dataset.data.pop(); | ||
}); | ||
|
||
window.myLine.update(); | ||
}); | ||
</script> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe we could add
skip
andstop
toproperties
only if true. I'm wondering if it would improve performance to make the object smallerThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Its actually bad for performance: https://codereview.stackexchange.com/questions/28344/should-i-put-default-values-of-attributes-on-the-prototype-to-save-space/28360#28360