Skip to content

Instantly share code, notes, and snippets.

View vkuchinov's full-sized avatar

Vladimir V. Kuchinov vkuchinov

View GitHub Profile
@vkuchinov
vkuchinov / .block
Last active February 12, 2018 16:01
D3.JS Split Chords With Multiplier
border: no
height: 960
@vkuchinov
vkuchinov / .block
Last active February 12, 2018 16:02
D3.JS Split Chords
border: no
height: 960
@vkuchinov
vkuchinov / README.md
Last active September 4, 2020 06:44
D3.JS Simplified Buttons

A simplified version of http://bl.ocks.org/pbogden/7487564 made by pbogden. You can assign every button 'click' event to different functions:

var data = [{label: "BUTTON.A", x: 100, y: 60, function: function(){ fnA(); } }, {label: "BUTTON.B", x: 100, y: 120, function: function(){ fnB(); } } ];

@vkuchinov
vkuchinov / README.md
Last active January 29, 2018 12:05
D3.JS Step Progress Bar

Step Progress Bar based on data with animated transitions. setInterval is just for demonstration, use updateProgressBar(element) instead.