Skip to content

Commit

Permalink
Release version 2.3.0 (#3113)
Browse files Browse the repository at this point in the history
## Interaction Features

* Constrain pan/zoom to min/max domain values
Adds `minDomainValue`/`maxDomainValue` properties to the PanZoomInteraction class that constrain the pan/zoom interaction to those domain values.

* Making selection easier
Adds `entitiesAt` method to _ALL_ plot types, deferring the best method for selecting entites based on a mouse click to each plot type. Also adds the index of the dataset to the `PlotEntity` object to determine which series was selected.

* Add `onPanEnd` and `onZoomEnd` to the PanZoom interaction

## Infrastructure Updates

* Upgrade to Typescript 2
* Use `@types` where supported
* Move bower dependencies to npm
* Upgrade TSLint to 3.15
  • Loading branch information
themadcreator authored Nov 21, 2016
1 parent 1883a83 commit db82c75
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "plottable",
"description": "A modular charting library built on D3",
"version": "2.2.0",
"version": "2.3.0",
"main": [
"plottable.js",
"plottable.css"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "plottable",
"description": "A modular charting library built on D3",
"version": "2.2.0",
"version": "2.3.0",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions plottable.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
Plottable 2.2.0 (https://github.com/palantir/plottable)
Plottable 2.3.0 (https://github.com/palantir/plottable)
Copyright 2014-2015 Palantir Technologies
Licensed under MIT (https://github.com/palantir/plottable/blob/master/LICENSE)
*/
Expand Down Expand Up @@ -887,7 +887,7 @@ var Plottable;
})(Plottable || (Plottable = {}));
var Plottable;
(function (Plottable) {
Plottable.version = "2.2.0";
Plottable.version = "2.3.0";
})(Plottable || (Plottable = {}));
var Plottable;
(function (Plottable) {
Expand Down
16 changes: 8 additions & 8 deletions plottable.min.js

Large diffs are not rendered by default.

Binary file modified plottable.zip
Binary file not shown.

0 comments on commit db82c75

Please sign in to comment.