juijs / jui-chart

SVG-based JUI chart that can be used in the browser and Node.js. Support many types of charts. (Dashboard, Map, Topology, Full 3D, Realtime)
https://codepen.io/collection/nLydod/
57 stars 25 forks source link

chart 여러개 사용시 질문점.. #145

Open Huntak opened 7 years ago

Huntak commented 7 years ago

차트를 여러개 그릴때 chart_saved.axis(0).update(data)를 통해 업데이트를 해주려하는데 chart_saved라는 이름이 같지 않게 설정하고 싶은데 chart_saved같은 변수 선언을 할때 동적으로 선언을 해줄 수 있을까요 ?

예를 들면 nn(1)을 하면 var chart_1 이런식으로 변수를 선언 하고 그 변수를 통해 chart를 build 할 수 있을까요 ?

function nn(){ var chart_saved = builder(chartDivId, { ..... }); }