Skip to content
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

Pull Request For Initial Data Changes #17

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,015 changes: 1,015 additions & 0 deletions .vs/Group_8_assignment_2_CSS/config/applicationhost.config

Large diffs are not rendered by default.

Binary file added .vs/Group_8_assignment_2_CSS/v16/.suo
Binary file not shown.
Binary file added .vs/slnx.sqlite
Binary file not shown.
658 changes: 332 additions & 326 deletions www/index.html

Large diffs are not rendered by default.

26 changes: 26 additions & 0 deletions www/js/chart.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
var xValues = [100,200,300,400,500,600,700,800,900,1000];

new Chart("myChart", {
type: "line",
data: {
labels: xValues,
datasets: [{
data: [860,1140,1060,1060,1070,1110,1330,2210,7830,2478],
borderColor: "red",
fill: false
},{
data: [1600,1700,1700,1900,2000,2700,4000,5000,6000,7000],
borderColor: "green",
fill: false
},{
data: [300,700,2000,5000,6000,4000,2000,1000,200,100],
borderColor: "blue",
fill: false
}]
},
options: {
legend: {display: false}
}
});
Try it Yourself »

4 changes: 2 additions & 2 deletions www/min/custom-min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.