I don't understand why my compose graphic.html
is so big.
I have placed my highcharts object in a "graphic"
div.
<div class="graphic">
<highcharts-chart [Highcharts]="Highcharts" [options]="chartOptions"
style="height: 150px; width: 900px; "></highcharts-chart>
</div>
On the css side I have this:
.graphic{
display: block;
max-width: 900px;
max-height: 150px;
}
Except that the result is not there! Do you have an idea why the size of the graphic is not suitable?