CircosJS Versions Save

d3 library to build circular graphs

2.2.0

5 years ago

No new feature. I just upgraded dev dependencies + minor version dependencies to fix security issue

2.1.0

6 years ago

Add events in all configurations to allow adding event handlers

2.0.5

6 years ago

Allow direct import

2.0.4

6 years ago

Add radius option for chords track

2.0.0

7 years ago
  • 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

7 years ago

Add tooltip

1.6.2

7 years ago

Fix bower dependencies