Skip to main content

User action: Select a specific neighborhood from the drop-down selection.

 

CURRENT OUTCOME

--Crosstab filters on neighborhood selection.  

--Bar chart filters on neighborhood selection.  

--Map displays the selected neighborhood and excludes all other neighborhoods.

 

DESIRED OUTCOME

--Crosstab filters on neighborhood selection.  

--Bar chart filters on neighborhood selection.  

--Map highlights or bolds the selected neighborhood while continuing to display the other neighborhoods.

 

As a workaround, I added a glowing dot by creating three charts / map layers.  It is okay for the most part except for 'Bronx-Co-op City and Slogs Neck' where the dot is not centered within the neighborhood.  I would really prefer to have a highlighted geographic area or a bolded geographic boundary. Thank you!

2 réponses
  1. 26 avr. 2025, 07:15

    @Christina Kistler​ I created a calculation that tests if [Neighborhood] equals the neighborhood parameter (set 'All' to FALSE).

    //C_Highlight

    IF [Neighborhood parameter]='All' THEN FALSE

    ELSE

    [Neighborhood]=[Neighborhood parameter]

    END

    I added a second map layer and placed C_Highlight on the Color. I assigned FALSE the color 'Transparent white' and TRUE 'Orange'. @Christina Kistler​ I created a calculation that tests if [Neighborhood] equals the neighborhood parameter (set 'All' to FALSE).

0/9000