我在两个单独的模板/页面上有信息图表,并且一直在寻找可以使两个模板成为单个页面中的滑块内容的包,但一直是徒劳的。是否存在具有这些要求的包,也许您可以推荐一个滑块包,甚至有更好的解决方案?
在下面找到我的信息图模板/页面之一的示例:
<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>
期待您的帮助。