add polyline chart
This commit is contained in:
parent
087dbeae23
commit
17c7631967
|
@ -1,6 +1,10 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="polyline-chart">
|
<div class="polyline-chart">
|
||||||
<canvas :ref="ref" />
|
<canvas :ref="ref" />
|
||||||
|
|
||||||
|
<div class="for-slot">
|
||||||
|
<slot></slot>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -46,6 +50,21 @@ export default {
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style lang="less">
|
||||||
|
.polyline-chart {
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
canvas {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.for-slot {
|
||||||
|
position: absolute;
|
||||||
|
top: 0px;
|
||||||
|
left: 0px;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue