Script 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.2KViews1like0CommentsReading multiple excel files into Sisense data model
Reading multiple Excel files into Sisense data model Introduction: If you are migrating from Windows to a Sisense Linux-hosted solution, on the Sisense Windows machine you may use an SFTP client that moves Excel files placed in a remote server's folder to a folder on the Sisense Windows server. With this, it is used as a source folder for Excel file import to an ElastiCube. Since this is not possible with your hosted Linux, we could use the CDATA SFTP Connector to import these files. In your existing connection string, you will get just the names of the files. When connecting to an Excel sheet stored in an SFTP server, the URI must be sftp://<server>:<port>/<path to file>, as shown below. If the connection string does not contain this, you will just get the names of the files. Additionally, the ConnectionType and AuthScheme must be set to SFTP, and the SSHAuthMode must be set to either None, Password, or Public_Key depending on your SFTP server. If the issue still persists, it would be helpful to have a log file. To generate a log file, in your connection string to Excel, please set the Log file to the path where the log file will be generated (such as C:/Logs/log.txt) and Verbosity to 3. Then reproduce the error. Additional Resources: Sisense Docs: https://docs.sisense.com/win/SisenseWin/introduction-to-data-sources.htm Sisense Academy: https://academy.sisense.com/sisense-data-designer-web-application434Views1like0CommentsLimiting Date Range Filters in Sisense Dashboards
Wide date ranges in Sisense dashboards can lead to performance issues, especially when using live models or querying large datasets. For live data models, large queries increase costs as more data is pulled from the data warehouse. For Elasticubes, this can cause performance bottlenecks. To avoid these issues, here is a quick solution to "limit" the date range users can select, ensuring both cost-efficiency and smooth performance. Read more to find out how!644Views1like0CommentsInclude All filter to use values in list
When I use a filter in the dashboard and select all of the options Sisense doesn't include all of the options, it actually removes the "where clause" as the select all. So if I have three options in a filter and have all of them selected the filter behaves like there is no filter selection but what I really want is to filter by 3 three selected options, not the absence of a selection. Does this make sense? I want the filter actually filter by all of the selected items when all items are selected.Solved2.9KViews1like5CommentsCustomize Embedded Dashboard Layout
We have some dashboards embedded in our site. We would like to have the ability for the end user to customize their dashboard layout if they choose to do so by dragging and dropping widgets. Is it possible for end users/viewers to have the ability to move a widget within a dashboard but not alter the widget level filtering that can be done by designers or owners of the dashboard? thanks, Zach2KViews1like3CommentsWhat are your preferred ways for making a lot of details available to your users?
We have a lot of very detailed information available for our users, and there's often a need to drill into these details from the dashboard. There's variety of techniques available for this; we usually use the Jump To Dashboard feature to link to more detailed dashboards or have set up drill hierarchies within a pivot but these each have their own limits as well. What have you found to be good ways to allow users to go into lots of very specific detail while still giving useful overviews?4.7KViews1like5Comments