Displaying Chart Inside Bootstrap Accordion Body Not Working
Closed this issue · 0 comments
GiovanniL19 commented
Hi!
Got an issue with displaying the chart, when having {{ember-chart type='Line' data=chartData width=200 height=100 class='lineChart'}}
inside the panel-body of a bootstrap accordion nothing happens. Like this:
<div class="panel-body">
{{ember-chart type='Line' data=chartData width=200 height=100 class='lineChart'}}
</div>
However when writing the same code outside of the accordion it works fine. I installed chart.Js via bower.
chartData is from the example on the Chart.js website:
chartData: {
labels: ["January", "February", "March", "April", "May", "June", "July"],
datasets: [
{
label: "My First dataset",
fillColor: "rgba(220,220,220,0.2)",
strokeColor: "rgba(220,220,220,1)",
pointColor: "rgba(220,220,220,1)",
pointStrokeColor: "#fff",
pointHighlightFill: "#fff",
pointHighlightStroke: "rgba(220,220,220,1)",
data: [65, 59, 80, 81, 56, 55, 40]
},
{
label: "My Second dataset",
fillColor: "rgba(151,187,205,0.2)",
strokeColor: "rgba(151,187,205,1)",
pointColor: "rgba(151,187,205,1)",
pointStrokeColor: "#fff",
pointHighlightFill: "#fff",
pointHighlightStroke: "rgba(151,187,205,1)",
data: [28, 48, 40, 19, 86, 27, 90]
}
]
}
Does anyone have any ideas?
Thank you in advance