가이드
Vue 개발 가이드

Vue3 개발 가이드

1. 패키지 설치

먼저, npm을 사용하여 RealChart 패키지를 설치한다.

npm install realchart

2. Vue3 컴포넌트로 차트 만들기

다음은 RealChart를 사용하여 간단한 Vue3 컴포넌트를 만드는 예제이다.

예제 코드

<template>
  <div ref="chart" :id="domName" style="width: 850px; height: 550px;"></div>
</template>
 
<script>
import RealChart from "realchart";
 
export default {
  name: "RealChartComponent",
  props: ["domName"],
  data() {
    return {
      config: {
        title: "경기도 성남시 인구 현황",
        legend: true,
        xAxis: {
          title: "수정구",
          grid: true,
        },
        yAxis: {
          title: "전체 인구수",
        },
        series: {
          pointLabel: {
            visible: true,
            effect: "outline",
            style: {},
          },
          data: [
            ["신흥1동", 12904],
            ["신흥2동", 19796],
            ["신흥3동", 10995],
            ["태평1동", 14625],
            ["태평2동", 14627],
            ["태평3동", 12649],
            ["태평4동", 12279],
          ],
          data2: [
            [1, 7],
            [2, 11],
            [3, 9],
            [4, 10],
            [5, 14.3],
            [6, 13],
            [7, 12.5],
          ],
        },
      },
    };
  },
  mounted() {
    this.chart = RealChart.createChart(document, this.$refs.chart, this.config);
    console.log(RealChart.getVersion());
  },
};
</script>
 
<style>
@import url("realchart/dist/realchart-style.css");
</style>

3. RealChart Vue3 Wrapper로 개발하기

🚧

준비 중입니다...

4. 추가자료

샘플 코드

샘플 코드는 realchart-examples (opens in a new tab)에서 확인할 수 있다.

차트 공식 문서

자세한 차트 사용법과 다양한 기능은 RealChart 공식 문서 (opens in a new tab)에서 확인할 수 있다.