ContributionsMost RecentNewest TopicsMost LikesSolutionsOption to enable Jump to Dashboard on Grand Totals and Sub Totals have JTD simply use include all for grand totals and pass the relevant include all for sub totals Scatter Plot Jitter Has anyone been able to get jitter to work on a scatter plot? - https://www.highcharts.com/demo/scatter-jitter This doesn't work. widget.on('beforeviewloaded', function(widget,element,options){ var chartOptions = element.options; chartOptions.chart.type = 'scatter'; delete chartOptions.plotOptions.bubble; chartOptions.plotOptions.scatter = { showInLegend: false, jitter: { x: 0.24, y: 0 }, marker: { radius: 2, symbol: 'circle' }, tooltip: { pointFormat: 'Measurement: {point.y:.3f}' } } }) Re: Dashboard - Passing Filter Values Using URL Parameters try adding fil.jaql.filter.all = false dashboard.on('initialized', function(widget) { // Get Parameters urlParameters = decodeURIComponent(window.location.href.substring(window.location.href.indexOf('?')+1)).split('&'); // Parse Parameters parameters = new Map(); urlParameters.forEach(function(param) { parameters.set(param.split('=')[0],param.split('=')[1]) }) console.log(prism.activeDashboard.filters.$$items) prism.activeDashboard.filters.$$items.forEach(function(fil) { if (parameters.get(fil.jaql.title) !== undefined) { fil.jaql.filter.all = false fil.jaql.filter.explicit = true fil.jaql.filter.userMultiSelect = true fil.jaql.filter.members = [parameters.get(fil.jaql.title)] } }) }) Sisense Mobile App Formatting It is possible to write custom scripts to change the formatting of a Blox widget when displaying in the Sisense Mobile App?