showAdditionalCountBoolean(default: true)
When true and more than one source is present, a +N count is appended to the chip label showing the number of additional sources.
Example - hide the additional count
<span id="citation"></span>
<script>
$("#citation").kendoCitation({
showAdditionalCount: false,
sources: [
{ url: "https://example.com", title: "A" },
{ url: "https://example.org", title: "B" }
]
});
</script>