加入購物車 圖表
im体育直播官网为您呈现炫酷图表,涵盖赛事热度、球队实力对决及赛果分布,数据一目了然!
IM體育元件
想要玩转这些炫酷图表?记得在您的页面里引入 Chartist 的 CSS 和 JS 文件哦!路径是:vendor/chartist/dist/chartist.min.css 和 vendor/chartist/dist/chartist.min.js。参考本页代码就懂啦!
数据魔法大公开
im体育直播官网在核心功能上加了超酷的数据属性层,可以直接在 HTML 里调用,主要有这 3 大法宝:
data-line-chart | data-bar-chart | data-pie-chart 用 JSON 格式喂数据,趋势图、对比图或饼图瞬间生动起来!data-options用 JSON 格式注入更多酷炫选项,玩转你的图表!data-series-color给每个数据集穿上专属颜色外衣!数据同样用 JSON 格式传递,让你的图表更吸睛! 代码示例在此,快来看!
更多精彩功能,尽在im体育插件中心:
http://gionkunz.github.io/chartist-js/index.html折線圖
公司 1
公司 2
公司 3
<!-- Line chart: Multiple lines of different color + Legend -->
<!-- Legend -->
<div class="d-flex flex-wrap justify-content-center fs-ms">
<div class="border rounded py-1 px-2 me-2 mb-2">
<div class="d-inline-block align-middle me-1" style="width: .75rem; height: .75rem; background-color: #4e54c8;"></div>
<span class="d-inline-block align-middle">Company 1</span>
</div>
<div class="border rounded py-1 px-2 me-2 mb-2">
<div class="d-inline-block align-middle me-1" style="width: .75rem; height: .75rem; background-color: #fea569;"></div>
<span class="d-inline-block align-middle">Company 2</span>
</div>
<div class="border rounded py-1 px-2 me-2 mb-2">
<div class="d-inline-block align-middle me-1" style="width: .75rem; height: .75rem; background-color: #f34770;"></div>
<span class="d-inline-block align-middle">Company 3</span>
</div>
</div>
<!-- Chart -->
<div class="ct-chart ct-perfect-fourth" data-line-chart='{"labels": ["W1", "W2", "W3", "W4", "W5", "W6", "W7", "W8", "W9"], "series": [[12, 9, 7, 8, 6, 4, 3, 2, 0], [2, 1, 3, 7, 9, 8, 7.7, 4, 7], [1, 3, 4, 5, 6, 8, 9, 10, 11]]}' data-options='{"axisY": {"onlyInteger": true}}' data-series-color='{"colors": ["#4e54c8", "#fea569", "#f34770"]}'></div> // Line chart: Multiple lines of different color + Legend
// Legend
.d-flex.flex-wrap.justify-content-center.fs-ms
.border.rounded.py-1.px-2.me-2.mb-2
.d-inline-block.align-middle.me-1(style="width: .75rem; height: .75rem; background-color: #4e54c8;")
span.d-inline-block.align-middle Company 1
.border.rounded.py-1.px-2.me-2.mb-2
.d-inline-block.align-middle.me-1(style="width: .75rem; height: .75rem; background-color: #fea569;")
span.d-inline-block.align-middle Company 2
.border.rounded.py-1.px-2.mb-2
.d-inline-block.align-middle.me-1(style="width: .75rem; height: .75rem; background-color: #f34770;")
span.d-inline-block.align-middle Company 3
// Chart
.ct-chart.ct-perfect-fourth(data-line-chart='{"labels": ["W1", "W2", "W3", "W4", "W5", "W6", "W7", "W8", "W9"], "series": [[12, 9, 7, 8, 6, 4, 3, 2, 0], [2, 1, 3, 7, 9, 8, 7.7, 4, 7], [1, 3, 4, 5, 6, 8, 9, 10, 11]]}', data-options='{"axisY": {"onlyInteger": true}}', data-series-color='{"colors": ["#4e54c8", "#fea569", "#f34770"]}')
長條圖
公司 1
公司 2
<!-- Bar chart: Multiple bars of different color + Legend -->
<!-- Legend -->
<div class="d-flex flex-wrap justify-content-center fs-ms">
<div class="border rounded py-1 px-2 me-2 mb-2">
<div class="d-inline-block align-middle me-1" style="width: .75rem; height: .75rem; background-color: #f34770;"></div>
<span class="d-inline-block align-middle">Company 1</span>
</div>
<div class="border rounded py-1 px-2 me-2 mb-2">
<div class="d-inline-block align-middle me-1" style="width: .75rem; height: .75rem; background-color: #fea569;"></div>
<span class="d-inline-block align-middle">Company 2</span>
</div>
</div>
<!-- Chart -->
<div class="ct-chart ct-perfect-fourth" data-bar-chart='{"labels": ["2016", "2017", "2018", "2019", "2020", "2021"], "series": [[12000, 9000, 7000, 8000, 11000, 6000], [3500, 5000, 8750, 1300, 3000, 8750]]}', data-series-color='{"colors": ["#f34770", "#fea569"]}'></div> // Bar chart: Multiple bars of different color + Legend
// Legend
.d-flex.flex-wrap.justify-content-center.fs-ms
.border.rounded.py-1.px-2.me-2.mb-2
.d-inline-block.align-middle.me-1(style="width: .75rem; height: .75rem; background-color: #f34770;")
span.d-inline-block.align-middle Company 1
.border.rounded.py-1.px-2.me-2.mb-2
.d-inline-block.align-middle.me-1(style="width: .75rem; height: .75rem; background-color: #fea569;")
span.d-inline-block.align-middle Company 2
// Chart
.ct-chart.ct-perfect-fourth(data-bar-chart='{"labels": ["2016", "2017", "2018", "2019", "2020", "2021"], "series": [[12000, 9000, 7000, 8000, 11000, 6000], [3500, 5000, 8750, 1300, 3000, 8750]]}', data-series-color='{"colors": ["#f34770", "#fea569"]}')
圓餅圖
公司 1
公司 2
公司 3
<!-- Pie chart: Multiple slices of different color + Legend -->
<!-- Legend -->
<div class="d-flex flex-wrap justify-content-center fs-ms">
<div class="border rounded py-1 px-2 me-2 mb-2">
<div class="d-inline-block align-middle me-1" style="width: .75rem; height: .75rem; background-color: #69b3fe;"></div>
<span class="d-inline-block align-middle">Company 1</span>
</div>
<div class="border rounded py-1 px-2 me-2 mb-2">
<div class="d-inline-block align-middle me-1" style="width: .75rem; height: .75rem; background-color: #42d697;"></div>
<span class="d-inline-block align-middle">Company 2</span>
</div>
<div class="border rounded py-1 px-2 me-2 mb-2">
<div class="d-inline-block align-middle me-1" style="width: .75rem; height: .75rem; background-color: #f34770;"></div>
<span class="d-inline-block align-middle">Company 3</span>
</div>
</div>
<!-- Chart -->
<div class="ct-chart ct-perfect-fourth" data-pie-chart='{"series": [5, 3, 4]}', data-series-color='{"colors": ["#69b3fe", "#42d697", "#f34770"]}'></div> // Pie chart: Multiple slices of different color + Legend
// Legend
.d-flex.flex-wrap.justify-content-center.fs-ms
.border.rounded.py-1.px-2.me-2.mb-2
.d-inline-block.align-middle.me-1(style="width: .75rem; height: .75rem; background-color: #69b3fe;")
span.d-inline-block.align-middle Company 1
.border.rounded.py-1.px-2.me-2.mb-2
.d-inline-block.align-middle.me-1(style="width: .75rem; height: .75rem; background-color: #42d697;")
span.d-inline-block.align-middle Company 2
.border.rounded.py-1.px-2.me-2.mb-2
.d-inline-block.align-middle.me-1(style="width: .75rem; height: .75rem; background-color: #f34770;")
span.d-inline-block.align-middle Company 3
// Chart
.ct-chart.ct-perfect-fourth(data-pie-chart='{"series": [5, 3, 4]}', data-series-color='{"colors": ["#69b3fe", "#42d697", "#f34770"]}')