I want to create 3d pie chart in extjs 5.0.0 like in the examples page, http://dev.sencha.com/extjs/5.0.0/examples/kitchensink/?charts=true#pie-3d
However, here there is not label and legend in...
Type: Posts; User: jamol91
I want to create 3d pie chart in extjs 5.0.0 like in the examples page, http://dev.sencha.com/extjs/5.0.0/examples/kitchensink/?charts=true#pie-3d
However, here there is not label and legend in...
Yes it worked.
I added
request.prependBaseUrl = true;
before
for (i = 0; i < length; ++i) {
I have built extjs 5 app using sencha cmd and I want to use it in my custom hmtl page. I have the following structure:
extjsapp
.sencha
app
build
ext
packages
I want to use extjs 5 in my website which is not extjs based app.
I have created extjs app within root directory of my application and built it using sencha cmd.
When I use js and css files from...
There is a method sort in store, I hope it is what you need. Here docs
I was having the same issue and the following did the trick:
I added this sorters in my store:
sorters: [
{
property: 'category',
direction: 'ASC'
}
...