Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi everybody!
I have a custom visual with two properies of type number, Which are called Max and Min. How I can control Max is greater than Min when the user changes any of the values?
It's possible???
Thank in advance.
First, a few assumptions:
1. You created a "settings" object called "mySettings" to hold the min and max properties values.
2. You created a converter() function that, among other things, gets the min and max properties values and assigns them to mySettings.
3. In your enumerateObjectInstances() implementation, when handling the VisualObjectInstance object that has the min and max properties, you assign it with the corresponding values from mySettings.
The general idea is as follows:
In your converter() function, after you get the min and max values, you compare them to see if max is greater than min. If it is, than you assign their values to mySettings as usual. Otherwise, you set the invalid value to a valid one in mySettings(E.g, you can set min to max-1, or set max to min+1, or even check to see which one had its value changed and set it to its previous value, and so on...).
You can also notify the user about the error that occured by using the hostServices.setWarnings() method in your update() method. You can find many usage examples in the custom visuals github project(One example can be found in the funnelChart.ts file's update() implementation). This method pops up that annoying Power BI error message dialog.
User | Count |
---|---|
5 | |
5 | |
3 | |
2 | |
2 |
User | Count |
---|---|
10 | |
7 | |
4 | |
4 | |
4 |