我在两个单独的模板/页面上都有图表图表,并且一直在寻找一个使两个模板在单个页面中成为滑块内容的软件包。 是否存在满足这些要求的软件包,也许您可以推荐滑块软件包,甚至有更好的解决方案?
在下面找到我的信息图表模板/页面之一的示例:
<template name="myDoughnutChart">
Total number of users Doughnut chart: <br>
{{notLoggedIn}} logged in <br>
{{activelyUsingApp}} are currently using Pescrow <br>
{{idleUsers}} are logged in but idle <br>
{{totalNumbersOfUsers}} are the total number of users!
<canvas id="myDoughnutChart" class="img-responsive" width="400" height="400"></canvas>
</template>
这是我的信息图表模板/页面的另一个示例:
<template name="radarChart">
Top three most visited pages: <br>
<canvas id="radarChart" class="img-responsive" width="400" height="400"></canvas>
</template>
在 onlinePresence 页面/模板下面找到我想在模板之间实现滑块的方法: myDoughnutChart 和 radarChart
<template name="onlinePresence">
<div class="container">
<div class="pageTitle" align="center" > Online Presence </div>
{{>myDoughnutChart id='myDoughnutChart' width="300" height="400"}}
{{>radarChart id='radarChart' width="300" height="400"}}
</div>
</template>
期待您的帮助。