Forum Discussion

murakonda86's avatar
murakonda86
New Member
6 years ago

Need Help on Font type

Hi Team,

I  have bar chart and display Product wise sales amount. 

Ex: Table Name: Product
   PName     Value

     Bikes      10000

     Cars        2400

When I choose Y axis as values and X-Axis as PName, I want to display Bikes as "Bold" font style remaining values on the Pname column shows in normal font style

 

Please help me how can we display only one value from a column as bold

2 Replies

  • Greg_Deckler's avatar
    Greg_Deckler
    Community Champion
    I'm not aware of a way to do that other than perhaps stacked visuals and bookmarks.
  • v-alq-msft's avatar
    v-alq-msft
    Community Support

    Hi, murakonda86 

     

    It is unavailable to display Bikes as "Bold" font style remaining other values on the Pname column showing in normal font style in a bar chart currently. If you modify the font style, all Pname will change. I'd like to suggest you post a new idea in Idea Forum , and add your comments there to improve Power BI for making this feature coming sooner.

     

    As a workaround, you may try conditional formatting with the following measure.

     

    colcr control = 
    IF(
        SELECTEDVALUE('Table'[PName]) = "Bikes",
        "Red",
        "Blue"
    )

     

     

    Then you need to go to 'Visualization' ribbon',click 'Format'=>'Data colors'=> 'Conditional formatting', set as below.

     

     

    Result:

     

    Best Regards

    Allan

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.