frequencyTemplate

A template string or a function specifying the frequency (weight) of each item, based on which the size of the tag is determined.
Defaults to "{frequency}".

<div id="tags" />

<script type="text/javascript">
    jQuery(function ($) {
        $("#tags").shieldTagCloud({
            dataSource: {
                data: [
                    { name: "Kevin", age: 32, eng: "google" },
                    { name: "Stewart", age: 35, eng: "yahoo" },
                    { name: "Bob", age: 26, eng: "bing" }
                ]
            },
            textTemplate: "{name}",
            frequencyTemplate: "{age}",
            hrefTemplate: function(item) { 
                return "www." + item.eng + ".com";
            }
        });
    });
</script>