From 681b1c344315722da318cc3486daa973ad8e05a7 Mon Sep 17 00:00:00 2001 From: Dan Noble Date: Thu, 22 Aug 2024 09:13:26 -0700 Subject: [PATCH] Added disableEntityLink documentation to bar chart web component --- api/web_components/bar.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/web_components/bar.md b/api/web_components/bar.md index 420a6627c..b03a01ffd 100644 --- a/api/web_components/bar.md +++ b/api/web_components/bar.md @@ -68,6 +68,8 @@ permalink: /api/web_components/bar | ---------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | barHeight | number | Bar height (in px) for horizontal charts. | | colors | list | Specify custom color for each variable. Pass in colors in the same order as variables.

Values should follow CSS specification (keywords, rgb, rgba, hsl, #hex). Separate multiple values with spaces, e.g., `"#ff0000 #00ff00 #0000ff"`. Make sure individual colors have no spaces. For example, use `rgba(255,0,0,0.3)` instead of `rgba(255, 0, 0, 0.3)`. | +| disableEntityLink | boolean | Include to disable entity (place) links in the x-axis. Default: `false` (links are enabled) | + | horizontal | boolean | Include to draw bars horizontally instead of vertically. | | lollipop | boolean | Include to draw lollipops instead of bars. | | maxPlaces | number | Maximum _number_ of child places to plot. Default: `7`. |