Skip to content

Commit

Permalink
fix(labels): Fix data.labels rendering for ranged data
Browse files Browse the repository at this point in the history
Handle ranged data from bar/AreaRange type to render data labels text

Fix #3495
  • Loading branch information
netil committed Nov 2, 2023
1 parent a684a19 commit a8ebdef
Show file tree
Hide file tree
Showing 6 changed files with 87 additions and 16 deletions.
24 changes: 15 additions & 9 deletions src/ChartInternal/data/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -899,14 +899,18 @@ export default {
const value = d?.value;

if (isArray(value)) {
// @ts-ignore
const index = {
areaRange: ["high", "mid", "low"],
candlestick: ["open", "high", "low", "close", "volume"]
}[type].indexOf(key);

return index >= 0 && value ? value[index] : undefined;
} else if (value) {
if (type === "bar") {
return value.reduce((a, c) => c - a);
} else {
// @ts-ignore
const index = {
areaRange: ["high", "mid", "low"],
candlestick: ["open", "high", "low", "close", "volume"]
}[type].indexOf(key);

return index >= 0 && value ? value[index] : undefined;
}
} else if (value && key) {
return value[key];
}

Expand Down Expand Up @@ -992,7 +996,9 @@ export default {
const max = yScale.domain().reduce((a, c) => c - a);

// when all data are 0, return 0
ratio = max === 0 ? 0 : Math.abs(d.value) / max;
ratio = max === 0 ? 0 : Math.abs(
$$.getRangedData(d, null, type) / max
);
} else if (type === "treemap") {
ratio /= $$.getTotalDataSum(true);
}
Expand Down
4 changes: 2 additions & 2 deletions src/ChartInternal/internals/format.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Copyright (c) 2017 ~ present NAVER Corp.
* billboard.js project is licensed under the MIT license
*/
import {isValue, isFunction, isObjectType} from "../../module/util";
import {isArray, isValue, isFunction, isObjectType} from "../../module/util";
import type {AxisType} from "../../../types/types";

/**
Expand Down Expand Up @@ -65,7 +65,7 @@ export default {
dataLabelFormat(targetId: string): Function {
const $$ = this;
const dataLabels = $$.config.data_labels;
const defaultFormat = v => (isValue(v) ? +v : "");
const defaultFormat = v => (isArray(v) ? v.join("~") : (isValue(v) ? +v : ""));
let format = defaultFormat;

// find format according to axis id
Expand Down
6 changes: 3 additions & 3 deletions src/ChartInternal/internals/text.ts
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ export default {
* @returns {string|null}
* @private
*/
updateTextBacgroundColor(d: IDataRow | IArcData): string | null {
updateTextBackgroundColor(d: IDataRow | IArcData): string | null {
const $$ = this;
const {$el, config} = $$;
const backgroundColor = config.data_labels_backgroundColors;
Expand Down Expand Up @@ -293,7 +293,7 @@ export default {

$$.$el.text
.style("fill", $$.getStylePropValue($$.updateTextColor))
.attr("filter", $$.updateTextBacgroundColor.bind($$))
.attr("filter", $$.updateTextBackgroundColor.bind($$))
.style("fill-opacity", forFlow ? 0 : $$.opacityForText.bind($$))
.each(function(d: IDataRow, i: number) {
// do not apply transition for newly added text elements
Expand Down Expand Up @@ -410,7 +410,7 @@ export default {
const rect = getBoundingRect(textElement);

if (isBarType) {
const isPositive = d.value >= 0;
const isPositive = $$.getRangedData(d, null, "bar") >= 0;

if (isRotated) {
const w = (
Expand Down
2 changes: 1 addition & 1 deletion src/ChartInternal/shape/arc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ export default {
if ($$.shouldShowArcLabel()) {
selection
.style("fill", $$.updateTextColor.bind($$))
.attr("filter", $$.updateTextBacgroundColor.bind($$))
.attr("filter", $$.updateTextBackgroundColor.bind($$))
.each(function(d) {
const node = d3Select(this);
const updated = $$.updateAngle(d);
Expand Down
2 changes: 2 additions & 0 deletions src/ChartInternal/shape/shape.ts
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,8 @@ export default {

if (isNumber(d)) {
value = d;
} else if ($$.isAreaRangeType(d)) {
value = $$.getBaseValue(d, "mid");
} else if (isStackNormalized) {
value = $$.getRatio("index", d, true);
} else if ($$.isBubbleZType(d)) {
Expand Down
65 changes: 64 additions & 1 deletion test/internals/text-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {select as d3Select} from "d3-selection";
import {format as d3Format} from "d3-format";
import util from "../assets/util";
import {$AXIS, $SHAPE, $TEXT} from "../../src/config/classes";
import {isNumber} from "../../src/module/util";
import {isArray, isNumber} from "../../src/module/util";

describe("TEXT", () => {
let chart;
Expand Down Expand Up @@ -426,6 +426,69 @@ describe("TEXT", () => {
});
});

describe("on ranged value(AreaRange/Bar range) chart", () => {
before(() => {
args = {
data: {
columns: [
["data1",
[150, 140, 110],
[155, 130, 115],
[160, 135, 120],
],
["data2", [230, 340], 200, [-100, -50]]
],
types: {
data1: "area-line-range",
data2: "bar"
},
labels: {
colors: "black"
}
}
};
});

it("should locate data labels in correct position", () => {
chart.$.text.texts.each(function(d) {
const text = isArray(d.value) ? d.value.join("~") : String(d.value);

expect(this.textContent).to.be.equal(text);
});
});

it("set option: data.labels.centered=true / data.labels.format", () => {
args.data.labels.centered = true;

args.data.labels.format = function(value, id, index) {
return Array.isArray(value) ? value.join("-") : value;
};
});

it("should locate data labels in correct position", () => {
const {$: {bar, text}} = chart;
const barText: number[] = [];

text.texts.each(function(d) {
const text = isArray(d.value) ? d.value.join("-") : String(d.value);

expect(this.textContent).to.be.equal(text);

if (d.id === "data2") {
barText.push(+this.getAttribute("y"));
}
});

// check labels centered
bar.bars.each(function(d, i) {
const rect = this.getBoundingClientRect();

expect(barText[i]).to.be.closeTo((rect.height / 2) + rect.top, 2);

});
});
});

describe("for all targets", () => {
before(() => {
args = {
Expand Down

0 comments on commit a8ebdef

Please sign in to comment.