Anyone know of any Meteor template sliders?

47 views Asked by At

I have infographics charts on two seperate templates/pages, and have been looking in vain for a package that would enable the two templates to become slider contents in a single page. Do any packages with theses requirement exist, perhaps you could recommend a slider package or even have a better solution?

Find below an example of one of my infographic template/page:

<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>

Here is yet another example of my infographic template/page:

<template name="radarChart">
    Top three most visited pages:  <br>
    <canvas id="radarChart" class="img-responsive" width="400" height="400"></canvas>

</template>

Find below the onlinePresence Page/Template were I would like to implement the slider between templates: myDoughnutChart and 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>

Looking forward to your help.

0

There are 0 answers