Search code examples
angularjsd3.jsn3-charts

Change font size of chart (n3-charts/line-chart)


I am using https://github.com/n3-charts/line-chart library to generate charts. Is it possible to change font size of axis labels? I could not find such option in official documentation.


Solution

  • Something like this on the CSS would work

    .tick text {
        font-size: 120%;
    }
    

    Edit: The appearance of many SVG elements can be configured using CSS, just inspect them in the browser and try modifying them.