文檔首頁>>LightningChart JS中文文檔>>定位圖
定位圖
LightningChart組件使用HTML <div>元素和CSS進行定位。
當創(chuàng)建一個新的LightningChart組件時,用戶應該提供對應圖表對<div>的引用。
<head> <style> /* <div> is styled and positioned here */ #my-chart-div { width: 600px; height: 400px; } </style> </head> <body> <!-- <div> is created here --> <div id="my-chart-div"></div> <script> // <div> is specified for the chart here const container = document.getElementById("my-chart-div"); const chart = lightningChart().ChartXY({ container }); </script> </body>
<div>應該在圖表之前創(chuàng)建。