Hi kapiljain,
Yes there is a way to acomplish that. You can use the formatFunction(value)
property of the valueAxis
to check if the value is already drawn and return an empty string instead of the value. You can create a global variable of type array to cache the values that already have been drawn and check the new values agains it. Here’s an example of a format function:
formatFunction: function (value) {
if (values.indexOf(value) > -1) {
return '';
}
values.push(value);
return value;
}
Best Regards,
Christopher
jQWidgets Team
http://www.jqwidgets.com