我想把这个Meteogram High Chart放在我的自定义Polymer元素中,但由于某些原因我不能渲染图表。有人可以帮我这个吗?
我的自定义Polymer元素:
<dom-module id="weather-chart">
<template>
<div id="container" style="width: 800px; height: 310px; margin: 0 auto">
<div style="margin-top: 100px; text-align: center" id="loading">
<i class="fa fa-spinner fa-spin"></i> Loading data from external source
</div>
</div>
</template>
<script type="text/javascript" src="../../scripts/weather-chart.js">
</script>
</dom-module>