Skip to content

Commit

Permalink
Bumped to v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bohnacker committed May 26, 2019
1 parent 949b3f3 commit 0ff6c11
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ I decided to puplish it here as a seperate library to have it as a pure, indepen
- [y](#y)
- [w](#w)
- [h](#h)
- [minCount](#mincount)
- [maxCount](#maxcount)
- [minValue](#minvalue)
- [maxValue](#maxvalue)
- [level](#level)
- [depth](#depth)
- [itemCount](#itemcount)
Expand All @@ -31,9 +31,9 @@ I decided to puplish it here as a seperate library to have it as a pure, indepen
### Treemap

Creates a new empty Treemap with position (x, y), width and height.
To specify drawing a bit more, you can give drawing options. 'sort' is true or false. If false, the elements will be shuffeled.
'direction' is either "horizontal", "vertical" or "both". With 'ignore', you can easily switch on and off branches of the Treemap.
Content may be added using addData() or addItem().
To specify drawing a bit more, you can give drawing options. `order` is "sort" or "shuffle".
`direction` is either "horizontal", "vertical" or "both". With 'ignore', you can easily switch on and off branches of the Treemap.
Content may be added using `addData()` or `addItem()`.

**Parameters**

Expand Down Expand Up @@ -61,11 +61,11 @@ width of the rectangle.

height of the rectangle.

#### minCount
#### minValue

the minimum value of the items in the items array

#### maxCount
#### maxValue

the maximum value of the items in the items array

Expand Down
2 changes: 1 addition & 1 deletion dist/Treemap.js
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ module.exports = Treemap;
},{"./package.json":2}],2:[function(require,module,exports){
module.exports={
"name": "Treemap.js",
"version": "0.2.1",
"version": "0.3.0",
"description": "A javascript library for calculating a treemap.",
"license": "MIT",
"main": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion dist/Treemap.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/lib/Treemap.js
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ module.exports = Treemap;
},{"./package.json":2}],2:[function(require,module,exports){
module.exports={
"name": "Treemap.js",
"version": "0.2.1",
"version": "0.3.0",
"description": "A javascript library for calculating a treemap.",
"license": "MIT",
"main": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Treemap.js",
"version": "0.2.1",
"version": "0.3.0",
"description": "A javascript library for calculating a treemap.",
"license": "MIT",
"main": "index.js",
Expand Down

0 comments on commit 0ff6c11

Please sign in to comment.