다른 명령
새 문서: === React 환경에서 highchart 사용 === * 설치 <source lang=python> npm install highcharts highcharts-react-official </source> <source lang=python> import React from 'react'; import Highcharts from 'highcharts'; import HighchartsReact from 'highcharts-react-official'; const options = { chart: { type: 'line' }, title: { text: 'React Highcharts Example' }, series: [{ data: [1, 2, 3, 4, 5] }] }; const App = () => <HighchartsReact highcharts={Highcharts} options={opti... |
편집 요약 없음 |
||
| 79번째 줄: | 79번째 줄: | ||
} | } | ||
</source> | </source> | ||
[[category:python]] | |||
[[category:highchart]] | |||
2025년 5월 20일 (화) 06:47 기준 최신판
React 환경에서 highchart 사용
- 설치
npm install highcharts highcharts-react-official
import React from 'react';
import Highcharts from 'highcharts';
import HighchartsReact from 'highcharts-react-official';
const options = {
chart: { type: 'line' },
title: { text: 'React Highcharts Example' },
series: [{ data: [1, 2, 3, 4, 5] }]
};
const App = () => <HighchartsReact highcharts={Highcharts} options={options} />;
export default App;
Vue 환경에서 사용
- 설치:
npm install highcharts highcharts-vue
<template>
<highcharts :options="chartOptions"></highcharts>
</template>
<script>
import Highcharts from 'highcharts';
import HighchartsVue from 'highcharts-vue';
export default {
name: 'App',
data() {
return {
chartOptions: {
chart: { type: 'bar' },
title: { text: 'Vue Highcharts Example' },
series: [{ data: [1, 3, 2, 4] }]
}
};
}
};
</script>
Angular 환경에서 사용
- 설치:
npm install highcharts-angular
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `<highcharts-chart
[Highcharts]="Highcharts"
[options]="chartOptions"
style="width: 100%; height: 400px;"></highcharts-chart>`
})
export class AppComponent {
Highcharts = Highcharts;
chartOptions = {
chart: { type: 'line' },
title: { text: 'Angular Highcharts Example' },
series: [{ data: [1, 2, 3, 4, 5] }]
};
}