Skip to content

Releases: keen/keen-dataviz.js

v3.14.5

08 Oct 08:30
Compare
Choose a tag to compare
  • Fix for the issue with header columns that are created based on the content of the first row - as a result there are missing columns for events with inconsistent schema/values.

v3.14.4

21 Jul 09:45
Compare
Choose a tag to compare
  • fix for metric chart, handle nested comparedProp for extraction

v3.14.3

29 Jun 05:52
Compare
Choose a tag to compare

fix for #216

v3.14.2

09 Jun 08:41
Compare
Choose a tag to compare

v3.14.1

04 Jun 06:56
Compare
Choose a tag to compare

v3.14.0

19 May 06:20
Compare
Choose a tag to compare

v3.13.0

10 Sep 20:29
Compare
Choose a tag to compare

New features:

  • heatmap chart #138
  • choropleth chart #139

v.3.12.1

01 Aug 10:41
Compare
Choose a tag to compare

Fixes:

  • range charts issue #197
  • temporary fix removed #188

v3.12.0

09 Jul 07:07
Compare
Choose a tag to compare

New feature:

Export data to a file

// method by default generates a JSON file
chart.exportData();

// supported formats : 'json', 'csv'
chart.exportData('csv');

v3.11.0

17 Jun 08:39
Compare
Choose a tag to compare

Features:

  • execution metadata
const chart = new Keen.Dataviz({
  container: '#container', // required
  ui: {
    executionMetadata: true // default
  }
});
  • copy to clipboard when you click on a point on the chart
const chart = new Keen.Dataviz({
  container: '#container', // required
  utils: {
    clickToCopyToClipboard: false, 
  }
});