Forum Discussion
Cannot add a property to Format->general
- 8 years ago
I found the issue by complete chance, Apparently type must not be false (I thought it was default value) in type in capabilities, so it must be defined like.
"sortByName": { "displayName": "Sort by name", "displayNameKey": "Visual_SortTasks", "type": { "bool": true } },Now it appears
Hello patr0805
You must include "sortByName" into capabilities.json.
Please take a look at the documentation to find out more.
Ignat Vilesov,
Software Engineer
Microsoft Power BI Custom Visuals
- patr08058 years agoRegular Visitor
I found the issue by complete chance, Apparently type must not be false (I thought it was default value) in type in capabilities, so it must be defined like.
"sortByName": { "displayName": "Sort by name", "displayNameKey": "Visual_SortTasks", "type": { "bool": true } },Now it appears
- kiliman8 years agoNew Member
Hello - it seems that the Gantt visual is now (in the last couple of weeks) sorting the data by Task as a default. It used to be by Start Date. I'm a newbie at customizing but is there a quick way to get back to sorting by Start Date?
Thanks.
- kiliman8 years agoNew Member
Hello - it seems that the Gantt visual is now (in the last couple of weeks) sorting the data by Task as a default. It used to be by Start Date. I'm a newbie at customizing but is there a quick way to get back to sorting by Start Date?
Thanks.
- patr08058 years agoRegular Visitor
As written in my first message, its already included in capabilities.json. I am currently reading your link regarding DataViewObjectsParser as I suspect that there is something strange I am missing.