Releases: nicgirault/circosJS
Releases · nicgirault/circosJS
2.2.0
2.1.0
Add events
in all configurations to allow adding event handlers
2.0.5
Allow direct import
2.0.4
Add radius option for chords track
Version 2
- Coffeescript to Javascript
- Use d3 v4
- Change the way palettes works:
- before: usePalette: <true|false>, paletteSize: 9, paletteName: 'Greens' and color attributes.
- Now only color attribute that recognize palettes. PaletteSize is not anymore useful (color palettes are continuous)
- order of attributes:
- before: track('name', conf, data)
- now: track('name', data, conf)
- Input data can't be anymore an array of arrays. It has to be an array of objects with shapes defined in documentation
- There is no more 'rule'. The rules are handle with callback functions. For example in the configuration you can specify:
color: function(d) {
return d.value > 5 ? 'blue' : 'red'
}
1.7.0
Add tooltip
1.6.2
Fix bower dependencies