tiny-vue_version0/examples/sites/demos/pc/app/chart/histogram/demo2-composition-api.vue

27 lines
688 B
Vue

<template>
<div>
<tiny-chart-histogram :options="options"></tiny-chart-histogram>
</div>
</template>
<script setup lang="jsx">
import { ref } from 'vue'
import { ChartHistogram as TinyChartHistogram } from '@opentiny/vue'
const options = ref({
padding: [40, 10, 40, 10],
data: [
{ 'Month': 'Jan', 'Domestic': 33, 'Abroad': 1 },
{ 'Month': 'Feb', 'Domestic': 27, 'Abroad': 39 },
{ 'Month': 'Mar', 'Domestic': 31, 'Abroad': 20 },
{ 'Month': 'Apr', 'Domestic': 30, 'Abroad': 15 },
{ 'Month': 'May', 'Domestic': 37, 'Abroad': 1 },
{ 'Month': 'Jun', 'Domestic': 36, 'Abroad': 17 }
],
xAxis: 'Month',
yAxis: {
name: 'Percent(%)'
}
})
</script>