Forum Discussion

AmiraB's avatar
AmiraB
Frequent Visitor
9 years ago
Solved

Custom Visuals- How to move text when resizing chart

I tried adding text to the Sample Bar Chart code bars.enter() .append("text") .classed("label",true) //or "label" .attr ("y",d => yScale(<num...
  • AmiraB's avatar
    9 years ago

    This solved the issue .

                let text = this.barContainer.selectAll('.bar').data(viewModel.dataPoints);
    
                text.enter()
                    .append('text')
                    .classed('bartext', true)
                    .text(d => <string>d.value2);
                text.attr({
                    y: d => height - 15,
                    x: d => xScale(d.category) + xScale.rangeBand() / 2,
                    'text-anchor': "middle",
                    fill: "red"
                });