Skip to content

Commit

Permalink
changelog/version bump/artifacts for beta 16
Browse files Browse the repository at this point in the history
  • Loading branch information
gordonwoodhull committed Aug 5, 2015
1 parent 256520e commit fc45444
Show file tree
Hide file tree
Showing 14 changed files with 111 additions and 40 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,4 @@ Marcel Pfeiffer <pfeiffer.marcel@gmx.de>
Rob Hardwick <rob.hardwick@atchai.com>
Jonathan Munz <jonathan.munz@upsight.com>
Chris Alvino <alvino.chris@gmail.com>
Emiliano Guevara <emiliano@opoint.com>
5 changes: 5 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# 2.0 Series
## 2.0.0 beta 16
* Reposition brush when coordinate grid chart size changes ([#972](https://github.com/dc-js/dc.js/pull/972))
* Ability to slice the data grid, by Chris Alvino ([#946](https://github.com/dc-js/dc.js/pull/946)). Also a much-needed warning that data table and data grid `.group()` means something completely different.
* Ability not to apply grouping to data table, by Emiliano Guevara ([#863](https://github.com/dc-js/dc.js/pull/863))

## 2.0.0 beta 15
* Reposition X axis on chart resize, by Rob Hardwick ([#856](https://github.com/dc-js/dc.js/pull/856)). Y axis as well
* More fixes for resizing charts, and [a new resizing examples directory](http://dc-js.github.io/dc.js/resizing/), mostly for testing.
Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "dc.js",
"repository": "dc-js/dc.js",
"description": "Multi-Dimensional charting built to work natively with crossfilter rendered with d3.js",
"version": "2.0.0-beta.15",
"version": "2.0.0-beta.16",
"keywords": [
"visualization",
"svg",
Expand Down
47 changes: 35 additions & 12 deletions dc.js

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

2 changes: 1 addition & 1 deletion dc.js.map

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions dc.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dc.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dc",
"version": "2.0.0-beta.15",
"version": "2.0.0-beta.16",
"license": "Apache-2.0",
"copyright": "2014",
"description": "A multi-dimensional charting library built to work natively with crossfilter and rendered using d3.js ",
Expand Down
12 changes: 11 additions & 1 deletion web/docs/api-latest.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* [Heat Map](#heat-map)
* [Box Plot](#box-plot)

#### Version 2.0.0-beta.15
#### Version 2.0.0-beta.16
The entire dc.js library is scoped under the **dc** name space. It does not introduce anything else
into the global name space.
#### Function Chaining
Expand Down Expand Up @@ -1358,6 +1358,16 @@ Get or set sort order. Default value: ``` d3.ascending ```
chart.order(d3.descending);
```

### .showGroups(true|false)
Get or set if group rows will be shown. Default value ``` true ```
The .group() getter-setter must be provided in either case.

```js
chart
.group([value], [name])
.showGroups(true|false);
```

## Data Grid Widget

Includes: [Base Mixin](#base-mixin)
Expand Down
9 changes: 8 additions & 1 deletion web/docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ <h1 id="dc-api">DC API</h1>
<li><a href="#heat-map">Heat Map</a></li>
<li><a href="#box-plot">Box Plot</a></li>
</ul>
<h4 id="version-2-0-0-beta-15">Version 2.0.0-beta.15</h4>
<h4 id="version-2-0-0-beta-16">Version 2.0.0-beta.16</h4>
<p>The entire dc.js library is scoped under the <strong>dc</strong> name space. It does not introduce anything else
into the global name space.</p>
<h4 id="function-chaining">Function Chaining</h4>
Expand Down Expand Up @@ -1211,6 +1211,13 @@ <h4 id="-order-order-">.order([order])</h4>
<p>Get or set sort order. Default value: <code>d3.ascending</code></p>
<pre><code class="lang-js"> chart.order(d3.descending);
</code></pre>
<h3 id="-showgroups-true-false-">.showGroups(true|false)</h3>
<p>Get or set if group rows will be shown. Default value <code>true</code>
The .group() getter-setter must be provided in either case.</p>
<pre><code class="lang-js"> chart
.group([value], [name])
.showGroups(<span class="hljs-literal">true</span>|<span class="hljs-literal">false</span>);
</code></pre>
<h2 id="data-grid-widget">Data Grid Widget</h2>
<p>Includes: <a href="#base-mixin">Base Mixin</a></p>
<p>Data grid is a simple widget designed to list the filtered records, providing
Expand Down
47 changes: 35 additions & 12 deletions web/js/dc.js

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

2 changes: 1 addition & 1 deletion web/js/dc.js.map

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions web/js/dc.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion web/js/dc.min.js.map

Large diffs are not rendered by default.

0 comments on commit fc45444

Please sign in to comment.