Improvise, adapt, overcome! How to increase the adoption and user satisfaction of dashboards
Discover the art of creating user-friendly dashboards that truly resonate with your audience. Drawing from six years of experience with Sisense, this article dives into dashboard design. Learn practical tips on improving dashboard readability, integrating advanced filters, and using dynamic widgets. Whether you're a seasoned designer or just starting, this guide offers invaluable insights to ensure your dashboards are not only functional but also a delight to use.1.4KViews4likes1CommentScript to reduce the size of the pie chart category labels is attached below
Hi Team , Script to reduce the size of the pie chart category labels is attached below widget.on("beforeviewloaded",function(widget,args){ var maxCharNum = 28 var value args.options.plotOptions.pie.dataLabels.formatter = function (){ value = chunk(this.key.trim(), maxCharNum).join('<br>'); return value; } args.options.plotOptions.pie.dataLabels.useHTML = true }); function chunk(str, n) { var ret = []; var i; var len; for(i = 0, len = str.length; i < len; i += n) { // console.log(str.substr(i, n)) ret.push(str.substr(i, n)) } return ret }; Thanks Sijo1.2KViews1like0CommentsHow do I display the earliest date as a column in a pivot table?
Hi, I need to create a healthcare pivot table with three columns. Provider Name, number of claims by provider, and earliest date of encounter for each provider. Something like above.. However this being a pivot table is it possible to achieve the last column? I did put in a calculated column to rank them, ToInt(rankasc(assigned_reg_userid,Date_of_visit)) Any help/workaround is appreciated!Solved4.2KViews1like3Comments