1

As per my requirements, I need drop shadow in sencha charts.

Is it possible to add a drop shadow to sencha charts?

Thanks, Nag.

Nag
  • 1,438
  • 1
  • 11
  • 39

1 Answers1

0

I found getShadowOptionsin touchcharts-debug.js. With that i can able to change shadow options like shadow width, shadow color and blurness. but not able to bring drop shadow.

getShadowOptions: function(force) {
    return {
        shadowOffsetX: 3,

        shadowOffsetY: Ext.is.Android ? -2 : 2,
        shadowBlur: 3,
    shadowColor: '#000000'
    };
},
Nag
  • 1,438
  • 1
  • 11
  • 39