capabilities
2 TopicsPBIVIZ Multiple values in categorical data
I've mapped categorical data with a single measure in capabilities.json. It works with a single measure. But I need to add another measure. "dataViewMappings": [ { "categorical": { "categories": { "for": { "in": "category" }, "dataReductionAlgorithm": { "top": {} } }, "values": { "select": [ { "bind": { "to": "measure" } }, { "bind": { "to": "measure1" } } ] } } } When I add the second value "measure1" and print categorical to the console I see only a single array of "measure" but not "measure1". Does pbiviz support passing multiple values along categorical data?Custom visual text input box
Hi community, I need help on creating a text input box inside my custom visual. When creating a text input box with the following code, the input is limited by 250 characters: "customTextInput": { "displayNameKey": "CustomTextInput", "descriptionKey": "CustomTextInput_Description", "displayName": "Text Input", "description": "Paste Text Input here.", "type": { "text": true } } Is there a way on creating a bigger text input box or how can I exceed the limit of 250 characters? Thanks in advance!