fix: update prop names

This commit is contained in:
woothu
2019-03-19 16:40:44 +01:00
parent 6c7a636a9a
commit e6b7e32e9b
13 changed files with 84 additions and 171 deletions
+9 -9
View File
@@ -1,34 +1,34 @@
<template>
<div class="animated fadeIn">
<CCardGroup columns class="card-columns">
<CCard header="Line Chart" bodyWrapper>
<CCard headerHtml="Line Chart" bodyWrapper>
<LineExample/>
</CCard>
<CCard header="Bar Chart" bodyWrapper>
<CCard headerHtml="Bar Chart" bodyWrapper>
<BarExample/>
</CCard>
<CCard header="Doughnut Chart" bodyWrapper>
<CCard headerHtml="Doughnut Chart" bodyWrapper>
<DoughnutExample/>
</CCard>
<CCard header="Radar Chart" bodyWrapper>
<CCard headerHtml="Radar Chart" bodyWrapper>
<RadarExample/>
</CCard>
<CCard header="Pie Chart" bodyWrapper>
<CCard headerHtml="Pie Chart" bodyWrapper>
<PieExample/>
</CCard>
<CCard header="Polar Area Chart" bodyWrapper>
<CCard headerHtml="Polar Area Chart" bodyWrapper>
<PolarAreaExample/>
</CCard>
<CCard header="Simple line chart" bodyWrapper>
<CCard headerHtml="Simple line chart" bodyWrapper>
<CSimpleLineChart style="height:80px" :data='[10, 22, 34, 46, 58, 70, 46, 23, 45, 78, 34, 12]'
label='Sales' borderColor='success'/>
</CCard>
<CCard header="Simple pointed chart" bodyWrapper>
<CCard headerHtml="Simple pointed chart" bodyWrapper>
<CSimplePointedChart class='px-3' :data='[65, 59, 84, 84, 51, 55, 40]'
:labels="['January', 'February', 'March', 'April', 'May', 'June', 'July']"
style='height:80px' label='Members' pointHoverColor='warning' borderColor='warning'/>
</CCard>
<CCard header="Simple bar chart" bodyWrapper>
<CCard headerHtml="Simple bar chart" bodyWrapper>
<CSimpleBarChart style="height:80px" :data='[10, 22, 34, 46, 58, 70, 46, 23, 45, 78, 34, 12]'
label='Sales' color='danger'/>
</CCard>