I'm using ChartJS in my project (more exactly ng2-charts for Angular 2 built on top of the original library).
I see there is an option:
legend: false|true
However I find particularly annoying tot to be able to remove the upper legend (which describes each line in the line chart for example). Below you can see what I mean:
I tried with
.chart-legend {
visibility: hidden;
display: none;
}
taking inspiration from Chartjs Legend Styling
but I think that applies to some other legend (bottom legend). Is there a way to customize / hide the upper legend?
Also, is there an option to change x/y-axes label orientation? (e.g. display them vertically, rather than diagonal)