cancel
Showing results for 
Search instead for 
Did you mean: 
intapiuser
Community Team Member
Community Team Member
The following script allows you to hide markers for a series (Last Tested: v7.0.1.11006)
// Set markers enabled to false for a series
function setMarker(array, enabledFlag) {
for ( var i = 0; i < array.length; i++) {
array[i].marker.enabled = false;
}

}

widget.on('render', function(sender,se){

// edit index of series to select the series you want to turn off markers for
var series = 1;

setMarker(sender.queryResult.series[series].data, false);
})
Version history
Last update:
‎02-09-2024 11:24 AM
Updated by:
Contributors
Community Toolbox

Recommended quick links to assist you in optimizing your community experience:

Developers Group:

Product Feedback Forum:

Need additional support?:

Submit a Support Request

The Legal Stuff

Have a question about the Sisense Community?

Email [email protected]

Share this page: