primevue-mirror/src/views/chart/PieChartDoc.vue

40 lines
641 B
Vue
Raw Normal View History

2019-04-02 12:44:35 +00:00
<template>
<div class="content-section documentation">
<TabView>
<TabPanel header="Source">
<CodeHighlight>
<template v-pre>
2019-08-04 12:19:34 +00:00
&lt;Chart type="pie" :data="chartData" /&gt;
2019-04-02 12:44:35 +00:00
</template>
</CodeHighlight>
<CodeHighlight lang="javascript">
export default {
data() {
return {
chartData: {
labels: ['A','B','C'],
datasets: [
{
data: [300, 50, 100],
backgroundColor: [
"#FF6384",
"#36A2EB",
"#FFCE56"
],
hoverBackgroundColor: [
"#FF6384",
"#36A2EB",
"#FFCE56"
]
}
]
}
}
}
}
</CodeHighlight>
</TabPanel>
</TabView>
</div>
</template>