Skip to content

Commit eb7e544

Browse files
update changelog/artifacts for #824
1 parent 0358c0f commit eb7e544

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

Changelog.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# 2.0 Series
22
## 2.0.0 beta 6
3+
* pie chart consistently pass data object to pie title function, by Jasmine Hegman ([#824](https://github.com/dc-js/dc.js/pull/824) / [#755](https://github.com/dc-js/dc.js/issues/755))
34
* heatmap box titles were not updated on redraw, by hhravn ([#798](https://github.com/dc-js/dc.js/pull/798))
45
* apply ordering to ordinal bar chart, by Mihai Hodorogea ([#766](https://github.com/dc-js/dc.js/pull/766) / [#772](https://github.com/dc-js/dc.js/issues/772))
56
* add option to hide mouseover dots for line chart, by Davis Ford ([#735](https://github.com/dc-js/dc.js/pull/735))

dc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3845,7 +3845,7 @@ dc.pieChart = function (parent, chartGroup) {
38453845
function createTitles(slicesEnter) {
38463846
if (_chart.renderTitle()) {
38473847
slicesEnter.append('title').text(function (d) {
3848-
return _chart.title()(d);
3848+
return _chart.title()(d.data);
38493849
});
38503850
}
38513851
}

dc.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dc.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web/js/dc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3845,7 +3845,7 @@ dc.pieChart = function (parent, chartGroup) {
38453845
function createTitles(slicesEnter) {
38463846
if (_chart.renderTitle()) {
38473847
slicesEnter.append('title').text(function (d) {
3848-
return _chart.title()(d);
3848+
return _chart.title()(d.data);
38493849
});
38503850
}
38513851
}

0 commit comments

Comments
 (0)