|
|
|
|
@ -6,11 +6,11 @@
|
|
|
|
|
* [HTML5 Developer Guide](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/HTML5)
|
|
|
|
|
* [Web Technology for Developer](https://developer.mozilla.org/en-US/docs/Web)
|
|
|
|
|
|
|
|
|
|
Useful html tags `<header>,<article><footer><section>`
|
|
|
|
|
Useful html tags `<header><article><footer><section>`
|
|
|
|
|
|
|
|
|
|
Sample Output
|
|
|
|
|
|
|
|
|
|

|
|
|
|
|

|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## [D3.JS](https://d3js.org/)
|
|
|
|
|
@ -21,10 +21,18 @@ Draw a scatter plot graph
|
|
|
|
|
Data = [ [ 10,15], [20,20], [5,20], [7,4], [22, 6] ]
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Tips : Use SVG circles
|
|
|
|
|
|
|
|
|
|
Scale data by 10 times
|
|
|
|
|
|
|
|
|
|
Tips :
|
|
|
|
|
* Use SVG circles
|
|
|
|
|
* Scale data by 10 times
|
|
|
|
|
|
|
|
|
|
Additional References
|
|
|
|
|
* [Making scatter Plot](https://alignedleft.com/tutorials/d3/making-a-scatterplot)
|
|
|
|
|
* [D3.js Practical Introduction](https://www.youtube.com/watch?v=TOJ9yjvlapY&list=PLAWhhmqB115BFOrcntOGDE-DsDFeXa_i0&index=2&t=0s)
|
|
|
|
|
* [Interactive chart with D3.js](https://www.youtube.com/watch?v=aHJCt2adSWA&list=PLAWhhmqB115BFOrcntOGDE-DsDFeXa_i0&index=3&t=0s)
|
|
|
|
|
* [d3-scale](https://github.com/d3/d3-scale)
|
|
|
|
|
* ```<script src="https://d3js.org/d3-scale.v3.min.js"></script>```
|
|
|
|
|
* [d3-axis](https://github.com/d3/d3-axis)
|
|
|
|
|
* ```<script src="https://d3js.org/d3-axis.v2.min.js"></script>```
|
|
|
|
|
|
|
|
|
|
## Javascript
|
|
|
|
|
|
|
|
|
|
|