Yes, it is possible, you are already working with div's
, just put them all inside another div
and add class
that create this effect ....
USING FLICKITY
<div class="main-gallery">
<div id="DonuTchartIBV-MMS-1" class="donut gallery-cell"></div>
...
<div id="" class="gallery-cell"></div>
</div>
Of course, load the required libraries and add the following line in your .js
:
$('.main-gallery').flickity({
cellAlign: 'left',
contain: true
});
Example jsFiddle using flickity
USING OWLCAROUSEL
<div id="owl-example" class="owl-carousel">
<div id="DonuTchartIBV-MMS-1" class="donut"></div>
...
<div></div>
</div>
Upload the libraries: Theme.css , carousel.css , carousel.js and add the following line in your .js
:
$(document).ready(function() {
$("#owl-example").owlCarousel();
});
Example jsFiddle using OwlCarousel