Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

A Backbone model containing information about current item (row). See "Additional variables exposed in the custom cell Facet Table templates" for more information.

Widgets.Connection

The Connection widget (Heatmap) draws a matrix of integral values, and automatically calculates the background for each cell, according to its value (intensity).

Data postprocessing

postProcessData

The method will be called just before the data is about to be displayed, allowing the cells to be changed, new rows and columns to be added, and sorting to be performed.

Expand
titleExample
Code Block
languagejs
titleExample
postProcessData: function (payload) {
	payload.labelsX.sort();
	payload.matrix[0][1] = 1;
	payload.matrix.push([1, 2, 3, 4]);	
	return payload;
},

Widgets.DoubleSided

The DoubleSided widget is a composite widget, allowing composing of two other widgets, with separate configurations, with the option to 'flip' between the views in runtime.

...