Migrated charts to v3
parent
1375a8e9c2
commit
ecfd5f8501
|
@ -12,8 +12,14 @@ export default {
|
|||
type: String,
|
||||
data: null,
|
||||
options: null,
|
||||
width: Number,
|
||||
height: Number
|
||||
width: {
|
||||
type: Number,
|
||||
default: 300
|
||||
},
|
||||
height: {
|
||||
type: Number,
|
||||
default: 150
|
||||
},
|
||||
},
|
||||
chart: null,
|
||||
mounted() {
|
||||
|
|
|
@ -112,14 +112,14 @@ options: {
|
|||
</tr>
|
||||
<tr>
|
||||
<td>width</td>
|
||||
<td>string</td>
|
||||
<td>null</td>
|
||||
<td>number</td>
|
||||
<td>300</td>
|
||||
<td>Width of the chart in non-responsive mode.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>height</td>
|
||||
<td>string</td>
|
||||
<td>null</td>
|
||||
<td>number</td>
|
||||
<td>150</td>
|
||||
<td>Height of the chart in non-responsive mode.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
|
Loading…
Reference in New Issue