2018-09-30 23:01:58 +01:00
---
id: 587d7faa367417b2b2512bd3
title: Style D3 Labels
challengeType: 6
2019-08-05 09:17:33 -07:00
forumTopicId: 301492
2021-01-13 03:31:00 +01:00
dashedName: style-d3-labels
2018-09-30 23:01:58 +01:00
---
2020-11-27 19:02:05 +01:00
# --description--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
D3 methods can add styles to the bar labels. The `fill` attribute sets the color of the text for a `text` node. The `style()` method sets CSS rules for other styles, such as "font-family" or "font-size".
# --instructions--
Set the `font-size` of the `text` elements to 25px, and the color of the text to red.
# --hints--
The labels should all have a `fill` color of red.
```js
assert($('text').css('fill') == 'rgb(255, 0, 0)');
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
The labels should all have a `font-size` of 25 pixels.
```js
assert($('text').css('font-size') == '25px');
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --seed--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
## --seed-contents--
2018-09-30 23:01:58 +01:00
```html
< body >
< script >
const dataset = [12, 31, 22, 17, 25, 18, 29, 14, 9];
2018-10-08 01:01:53 +01:00
2018-09-30 23:01:58 +01:00
const w = 500;
const h = 100;
2018-10-08 01:01:53 +01:00
2018-09-30 23:01:58 +01:00
const svg = d3.select("body")
.append("svg")
.attr("width", w)
.attr("height", h);
2018-10-08 01:01:53 +01:00
2018-09-30 23:01:58 +01:00
svg.selectAll("rect")
.data(dataset)
.enter()
.append("rect")
.attr("x", (d, i) => i * 30)
.attr("y", (d, i) => h - 3 * d)
.attr("width", 25)
.attr("height", (d, i) => d * 3)
.attr("fill", "navy");
2018-10-08 01:01:53 +01:00
2018-09-30 23:01:58 +01:00
svg.selectAll("text")
.data(dataset)
.enter()
.append("text")
.text((d) => d)
.attr("x", (d, i) => i * 30)
.attr("y", (d, i) => h - (3 * d) - 3)
// Add your code below this line
2018-10-08 01:01:53 +01:00
2018-09-30 23:01:58 +01:00
// Add your code above this line
< / script >
< / body >
```
2020-11-27 19:02:05 +01:00
# --solutions--
2018-09-30 23:01:58 +01:00
2020-04-24 17:04:53 +05:30
```html
< body >
< script >
const dataset = [12, 31, 22, 17, 25, 18, 29, 14, 9];
const w = 500;
const h = 100;
const svg = d3.select("body")
.append("svg")
.attr("width", w)
.attr("height", h);
svg.selectAll("rect")
.data(dataset)
.enter()
.append("rect")
.attr("x", (d, i) => i * 30)
.attr("y", (d, i) => h - 3 * d)
.attr("width", 25)
.attr("height", (d, i) => d * 3)
.attr("fill", "navy");
svg.selectAll("text")
.data(dataset)
.enter()
.append("text")
.text((d) => d)
.attr("x", (d, i) => i * 30)
.attr("y", (d, i) => h - (3 * d) - 3)
.style("font-size", 25)
.attr("fill", "red")
< / script >
< / body >
2018-09-30 23:01:58 +01:00
```