Skip to content

How can I make x axis of nivo/line bold #1596

Answered by wyze
vishalkak asked this question in Q&A
Discussion options

You must be logged in to vote

You can customize the renderTick function of axisLeft. It will look similar to the following:

const MyLineChart = () => <Line axisLeft={{ renderTick: (value) => <text style={{ fontWeight: value === 0 ? 'bold' : 'normal'}}>{value}</text> }} />

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by wyze
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #1591 on June 16, 2021 15:33.