How to Create Radial Bar Chart in Tableau

Design a standout radial bar chart in Tableau by creating custom X and Y axes and bins from unionized data points. Compare categories like Tech, Furniture, and Supplies with a visually compelling and precise visualization. Ideal for users looking to leverage advanced Tableau techniques for more creative data presentations. Tableau: https://public.tableau.com/app/profil... Excel: Superstore data set (built into Tableau) Formulas: Radial - Points: IF CONTAINS([Table Name], "1") THEN 0 ELSE 270 END Radial - LOD: {FIXED [Category]: SUM([Sales])} Radial - Rank: RANK_UNIQUE(-SUM([Radial - LOD])) Radial - X: SIN((INDEX()-1) * WINDOW_MAX(MAX(PI()))/180) * WINDOW_MAX([Radial - Rank]) Radial - Y: COS((INDEX()-1) * WINDOW_MAX(MAX(PI()))/180) * WINDOW_MAX([Radial - Rank])