From 5f8d9c237d2d3bd23720f1e1cd0b0a111f256731 Mon Sep 17 00:00:00 2001 From: AtharvaKatre <45846529+AtharvaKatre@users.noreply.github.com> Date: Thu, 13 Jul 2023 11:32:03 +0530 Subject: [PATCH] Update treemaps.md Fixed typo --- doc/python/treemaps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/python/treemaps.md b/doc/python/treemaps.md index b86636e01df..98fbeadcd40 100644 --- a/doc/python/treemaps.md +++ b/doc/python/treemaps.md @@ -186,7 +186,7 @@ This example uses the following attributes: 1. [values](https://plotly.com/python/reference/treemap/#treemap-values): sets the values associated with each of the sectors. 2. [textinfo](https://plotly.com/python/reference/treemap/#treemap-textinfo): determines which trace information appear on the graph that can be 'text', 'value', 'current path', 'percent root', 'percent entry', and 'percent parent', or any combination of them. 3. [pathbar](https://plotly.com/python/reference/treemap/#treemap-pathbar): a main extra feature of treemap to display the current path of the visible portion of the hierarchical map. It may also be useful for zooming out of the graph. -4. [branchvalues](https://plotly.com/python/reference/treemap/#treemap-branchvalues): determines how the items in `values` are summed. When set to "total", items in `values` are taken to be value of all its descendants. In the example below Eva = 65, which is equal to 14 + 12 + 10 + 2 + 6 + 6 + 1 + 4. +4. [branchvalues](https://plotly.com/python/reference/treemap/#treemap-branchvalues): determines how the items in `values` are summed. When set to "total", items in `values` are taken to be value of all its descendants. In the example below Eve = 65, which is equal to 14 + 12 + 10 + 2 + 6 + 6 + 1 + 4. When set to "remainder", items in `values` corresponding to the root and the branches sectors are taken to be the extra part not part of the sum of the values at their leaves. ```python