Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
capuace
Frequent Visitor

Having issues getting custom properties to populate

Hi. I've been working on a simple little visual to try and learn the ropes here and seem to keep running into problems getting the custom properties I define to populate the format pane. Any help with this issue would be appreciated!

 

Here's some code for context on my project:

 

capabilities.json objects:

 

 

"card": {
            "displayName": "Card Settings",
            "properties": {
                "titleText": {
                    "displayName": "Title Text",
                    "type": {
                        "text": true
                    }
                },
                "titleColor": {
                    "displayName": "Title Color",
                    "type": {
                        "fill": {
                            "solid": {
                                "color": true
                            }
                        }
                    }
                },
                "titleSize": {
                    "displayName": "Title Font Size",
                    "type": {
                        "integer": true
                    }
                },
                "contentColor": {
                    "displayName": "Content Color",
                    "type": {
                        "fill": {
                            "solid": {
                                "color": true
                            }
                        }
                    }
                },
                "contentSize": {
                    "displayName": "Content Font Size",
                    "type": {
                        "integer": true
                    }
                },
                "flashColor": {
                    "displayName": "Flash Color",
                    "type": {
                        "fill": {
                            "solid": {
                                "color": true
                            }
                        }
                    }
                },
                "flashType": {
                    "displayName": "Flash Type",
                    "type": {
                        "enumeration": [
                            {
                                "displayName": "None",
                                "value": "none"
                            },
                            {
                                "displayName": "Blip",
                                "value": "blip"
                            }
                        ]
                    }
                }
            }
        }

 

 

 

settings.ts:

 

 

export class CardSettings {
    public titleText: string = '';
    public titleColor: string = "#ffffff";
    public titleSize: number = 11;
    public contentColor: string = "#ffffff";
    public contentSize: number = 11;
    public flashColor: string = "#ffffff";
    public flashType: string = "none";
}

export class VisualSettings extends DataViewObjectsParser {
    public settings: CardSettings = new CardSettings();
}

 

 

 

and enumerateObjectInstances in visual.ts:

 

 

public enumerateObjectInstances(
        options: EnumerateVisualObjectInstanceOptions
    😞 VisualObjectInstance[] | VisualObjectInstanceEnumerationObject {
        console.log('enumerating...');
        return VisualSettings.enumerateObjectInstances(this.settings || VisualSettings.getDefault(), options);
    }

 

 

where this.settings = <VisualSettings>VisualSettings.parse(options.dataViews[0]) in update().

 

edit: made a mistake copying some code.

 

1 ACCEPTED SOLUTION
dm-p
Super User
Super User

Hi @capuace

Your issue is this part of your code, in settings.ts:

export class VisualSettings extends DataViewObjectsParser {
    public settings: CardSettings = new CardSettings();
}

Try changing to:

export class VisualSettings extends DataViewObjectsParser {
    public card: CardSettings = new CardSettings();
}

The name of your class property needs to match the object name in your capabilities.json (you've defined as card in line 1 of your capabilities.json code) for it to enumerate correctly.

This also needs to be the same for your CardSettings properties, but these look OK 🙂

Good luck!

Daniel





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!


My course: Introduction to Developing Power BI Visuals


On how to ask a technical question, if you really want an answer (courtesy of SQLBI)




View solution in original post

3 REPLIES 3
dm-p
Super User
Super User

Hi @capuace

Your issue is this part of your code, in settings.ts:

export class VisualSettings extends DataViewObjectsParser {
    public settings: CardSettings = new CardSettings();
}

Try changing to:

export class VisualSettings extends DataViewObjectsParser {
    public card: CardSettings = new CardSettings();
}

The name of your class property needs to match the object name in your capabilities.json (you've defined as card in line 1 of your capabilities.json code) for it to enumerate correctly.

This also needs to be the same for your CardSettings properties, but these look OK 🙂

Good luck!

Daniel





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!


My course: Introduction to Developing Power BI Visuals


On how to ask a technical question, if you really want an answer (courtesy of SQLBI)




capuace
Frequent Visitor

That did it. Thanks so much!

Greg_Deckler
Super User
Super User

@Mike_Carlo @Seth_C_Bauer 


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.