Patrick Fisher
Patrick Fisher
Here's a Dot chart, if you'd like to use some or all of it. Dot chart class options: - all Column chart options, plus - `show-data-on-hover`: enable showing data on...
"Shorthand" is an abbreviation. `background` is an abbreviated form of `background-color`, etc.: it bundles many properties for brevity. `background` is shorthand (abbreviated) and `background-color` would be longhand.
Please use ES6 for game.LOG: https://github.com/pwfisher/css3d-game/commit/1a24cda2d3d398ec4646e58d974c4cb7d0b89c64 ```js game.LOG = (level, ...rest) => level < _log_level && console.log(...rest); ``` This is painful: https://github.com/pkalogiros/css3d-game/blob/dc3ff4ac8121297617df1ba92e7bf9ebd541e941/3d/js/engine.js#L798 ```js game.LOG = function ( a,b,c,d,e,f,g,h,i ) {...