I have a Scheduler application that has 7 Calendar values.
It appears that the color scheme repeats after 5 values
I found an example where it was suggested to create a scheme for a Chart widget that required additional colors beyond the repeat limit
$.jqx._jqxChart.prototype.colorSchemes.push({ name: ‘myScheme’, colors: [‘#ffff00’, ‘#ff0000’, ‘#ccff00’, ‘#00ffff’, ‘#aaaaaa’] });
It doesn’t appear that you can do this with the Scheduler
$.jqx._jqxScheduler.prototype.colorSchemes.push({ name: ‘myScheme’, colors: [‘#ffff00’, ‘#ff0000’, ‘#ccff00’, ‘#00ffff’, ‘#aaaaaa’,’#33cc33′,’#0099ff’] });
Are there any other options to create a user defined color scheme for the Scheduler ?