[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-elastic-docs-lens-chart-settings":3,"mdc-9w1trd-key":36,"related-repo-elastic-docs-lens-chart-settings":1538,"related-org-elastic-docs-lens-chart-settings":1621},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":31,"sourceUrl":34,"mdContent":35},"docs-lens-chart-settings","verify Kibana Lens chart settings","Verify Kibana Lens chart UI settings against the source code. Use when documenting chart types, reviewing chart settings accuracy, or checking UI labels and rendering order for Lens visualizations (bar, line, area, pie, treemap, mosaic, waffle, tag cloud, heat map, gauge, metric, region map, table).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"elastic","Elastic","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Felastic.png",[12,16,19,20],{"name":13,"slug":14,"type":15},"Dashboards","dashboards","tag",{"name":17,"slug":18,"type":15},"Documentation","documentation",{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},"Kibana","kibana",71,"https:\u002F\u002Fgithub.com\u002Felastic\u002Felastic-docs-skills","2026-07-12T07:48:00.912851",null,9,[29,8,30],"docs","skills",{"repoUrl":24,"stars":23,"forks":27,"topics":32,"description":33},[29,8,30],"Instructions for code agents on how to author Elastic docs","https:\u002F\u002Fgithub.com\u002Felastic\u002Felastic-docs-skills\u002Ftree\u002FHEAD\u002Fskills\u002Fproject\u002Flens-chart-settings","---\nname: docs-lens-chart-settings\nversion: 1.0.2\ndescription: Verify Kibana Lens chart UI settings against the source code. Use when documenting chart types, reviewing chart settings accuracy, or checking UI labels and rendering order for Lens visualizations (bar, line, area, pie, treemap, mosaic, waffle, tag cloud, heat map, gauge, metric, region map, table).\ncontext: fork\nallowed-tools: Read, Grep, Glob, WebFetch\nsources:\n  - https:\u002F\u002Fgithub.com\u002Felastic\u002Fkibana\u002Ftree\u002Fmain\u002Fx-pack\u002Fplatform\u002Fplugins\u002Fshared\u002Flens\u002Fpublic\u002Fvisualizations\n---\n\u003C!-- Copyright Elasticsearch B.V. and\u002For licensed to Elasticsearch B.V. under one\nor more contributor license agreements. See the NOTICE file distributed with\nthis work for additional information regarding copyright\nownership. Elasticsearch B.V. licenses this file to you under\nthe Apache License, Version 2.0 (the \"License\"); you may\nnot use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n\thttp:\u002F\u002Fwww.apache.org\u002Flicenses\u002FLICENSE-2.0\n\nUnless required by applicable law or agreed to in writing,\nsoftware distributed under the License is distributed on an\n\"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, either express or implied.  See the License for the\nspecific language governing permissions and limitations\nunder the License. -->\n\n# Verifying Kibana Lens Chart Settings from Source Code\n\nWhen documenting Lens chart settings, always verify labels, options, and rendering order against the Kibana source code. Do NOT guess UI labels.\n\n## Key Principles\n\n1. **UI labels come from i18n `defaultMessage` strings** — always extract the exact label.\n2. **Rendering order in JSX = rendering order in the UI** — document settings in the same order they appear in the component tree.\n3. **Conditional rendering is everywhere** — many settings only appear under specific conditions (chart type, selected options, number of dimensions). Trace the conditions.\n4. **Shared components are parameterized per chart** — the same `LegendSettings` component behaves differently for treemaps vs waffle vs pie based on props.\n\n## Source Code Layout\n\n### Partition charts (pie, donut, treemap, mosaic, waffle)\n\nAll partition-type charts share code under:\n\n```\nx-pack\u002Fplatform\u002Fplugins\u002Fshared\u002Flens\u002Fpublic\u002Fvisualizations\u002Fpartition\u002F\n├── partition_charts_meta.ts          # Per-chart config (toolbar options, legend config)\n├── toolbar\u002F\n│   ├── style_settings.tsx            # Orchestrates Style panel sections\n│   ├── titles_and_text_settings.tsx  # Slice labels + Slice values options\n│   ├── appearance_settings.tsx       # Donut hole (pie\u002Fdonut only)\n│   └── legend_settings.tsx           # Partition-specific legend wrapper\n```\n\nShared legend component:\n\n```\nx-pack\u002Fplatform\u002Fplugins\u002Fshared\u002Flens\u002Fpublic\u002Fshared_components\u002Flegend\u002F\n├── legend_settings.tsx               # Main legend settings (Visibility, Size, Truncation, Nested, Stats)\n├── location\u002Flegend_location_settings.tsx  # Position (only when `location` prop is defined)\n└── size\u002Flegend_size_settings.tsx     # Width\u002FSize dropdown\n```\n\n### Other chart types\n\nEach chart type has its own directory under `visualizations\u002F`:\n- `visualizations\u002Fxy\u002F` for bar, line, area\n- `visualizations\u002Fheatmap\u002F`\n- `visualizations\u002Fgauge\u002F`\n- `visualizations\u002Fmetric\u002F`\n- `visualizations\u002Ftagcloud\u002F`\n\n## Verification Workflow\n\n### Step 1: Find the chart metadata\n\nFor partition charts, start with `partition_charts_meta.ts`. This file defines per-chart:\n- `toolbar.categoryOptions` — Slice labels options (or empty array if none)\n- `toolbar.numberOptions` — Slice values options (or empty array if none)\n- `toolbar.emptySizeRatioOptions` — Donut hole options (pie\u002Fdonut only)\n- `toolbar.isDisabled` — Whether the Style panel is disabled entirely (waffle)\n- `legend.defaultLegendStats` — Enables Statistics\u002FShow value in legend (waffle only)\n- `legend.hideNestedLegendSwitch` — Hides the Nested toggle (waffle)\n- `legend.getShowLegendDefault` — Default legend visibility behavior for Auto mode\n- `maxBuckets` — Maximum Group by dimensions\n\n### Step 2: Trace the Style settings\n\nRead `toolbar\u002Fstyle_settings.tsx` to understand the Style panel structure:\n\n- If `emptySizeRatioOptions` exists → renders **Appearance** accordion + **Titles and text** accordion\n- If not → renders only `PartitionTitlesAndTextSettings` directly (no sub-headers)\n\nThen read `toolbar\u002Ftitles_and_text_settings.tsx`:\n- `categoryOptions` renders as the first button group (label: check i18n key `xpack.lens.pieChart.labelSliceLabels`)\n- `numberOptions` renders as the second button group (label: check i18n key `xpack.lens.pieChart.sliceValues`)\n- If `numberDisplay === 'percent'`, a **Decimal places** input appears\n\nIf `categoryOptions` is empty, the first button group is hidden. If `numberOptions` is empty, the second button group is hidden. If `isDisabled` is true, the entire section is disabled\u002Fhidden.\n\n### Step 3: Trace the Legend settings\n\nRead `toolbar\u002Flegend_settings.tsx` (partition wrapper) to see what props are passed to the shared `LegendSettings` component. Key props to check:\n\n| Prop | What it controls | How to verify |\n|------|-----------------|---------------|\n| `legendOptions` | Visibility options (Auto\u002FShow\u002FHide) | Always present for all partition charts |\n| `position` | Only renders if `location` is also passed | Partition charts do NOT pass `location` → Position hidden |\n| `renderNestedLegendSwitch` | Nested toggle | `!hideNestedLegendSwitch && groups > 1` |\n| `allowedLegendStats` | Statistics\u002FShow value | Only if `defaultLegendStats` defined in chart meta |\n| `legendSize` \u002F `onLegendSizeChange` | Width dropdown | Renders if `isVerticalLegend` is true |\n| `shouldTruncate` \u002F `onTruncateLegendChange` | Label truncation toggle | Always present when legend not hidden |\n| `showAutoLegendSizeOption` | Auto in size dropdown | Only for pre-8.3 visualizations |\n\n### Step 4: Determine rendering order\n\nRead the shared `legend_settings.tsx` JSX top to bottom. For partition charts (no `location` prop), the actual rendering order is:\n\n1. **Visibility** (always)\n2. **Width** (when legend not hidden, via LegendSizeSettings)\n3. **Label truncation** + **Line limit** (when legend not hidden)\n4. **Nested** (when legend not hidden AND multiple groups AND not hideNestedLegendSwitch)\n\nSettings that do NOT render for partition charts:\n- **Position** — requires `location` prop (only XY charts pass this)\n- **Statistics** — requires `allowedLegendStats.length > 1`\n- **Show value** — requires exactly 1 allowed legend stat of type Value\u002FCurrentAndLastValue\n\n### Step 5: Verify option labels\n\nFor each button group or dropdown, check the `label` or `inputDisplay` in the options array. Common pitfalls:\n\n| What you might assume | Actual UI label | Source |\n|-----------------------|----------------|--------|\n| \"Labels\" | \"Slice labels\" | `xpack.lens.pieChart.labelSliceLabels` |\n| \"Values\" | \"Slice values\" | `xpack.lens.pieChart.sliceValues` |\n| \"Legend size\" | \"Width\" | `xpack.lens.shared.legendSizeSetting.label` |\n| \"Truncate\" | \"Label truncation\" | `xpack.lens.shared.labelTruncation` |\n| \"Max lines\" | \"Line limit\" | `xpack.lens.shared.maxLinesLabel` |\n| \"Show\" (legend) | \"Show\" | `xpack.lens.pieChart.legendVisibility.show` |\n\n## Quick Reference: Per-Chart Differences\n\n| Feature | Pie\u002FDonut | Treemap | Mosaic | Waffle |\n|---------|-----------|---------|--------|--------|\n| Slice labels | Hide\u002FInside\u002FAuto | Hide\u002FShow | (none) | (none) |\n| Slice values | Hide\u002FInteger\u002FPercentage | Hide\u002FInteger\u002FPercentage | Hide\u002FInteger\u002FPercentage | (none) |\n| Donut hole | Yes | No | No | No |\n| Style panel disabled | No | No | No | Yes |\n| Legend Position | No | No | No | No |\n| Legend Width | Yes | Yes | Yes | Yes |\n| Nested legend | Yes (>1 group) | Yes (>1 group) | Yes (>1 group) | No |\n| Show value | No | No | No | Yes |\n| Statistics | No | No | No | No |\n| Default legend visibility | Auto shows when >1 bucket | Auto hides | Auto hides | Auto shows always |\n| Max Group by dimensions | 3 | 2 | 2 | 1 |\n| Color mapping | First Group by only | First Group by only | Vertical axis | Group by |\n\n## Common Mistakes to Avoid\n\n1. **Assuming Position exists for partition charts** — it doesn't. Only XY-type charts have Position.\n2. **Using \"Legend size\" instead of \"Width\"** — the actual label is \"Width\".\n3. **Including Auto in Width options** — Auto only shows for pre-8.3 visualizations.\n4. **Documenting Statistics for non-waffle charts** — only waffle has `defaultLegendStats`.\n5. **Assuming \"Titles and text\" sub-header exists for all charts** — it only appears when `emptySizeRatioOptions` is defined (pie\u002Fdonut).\n6. **Getting the Nested legend condition wrong** — it requires both `hideNestedLegendSwitch !== true` AND multiple Group by dimensions.\n7. **Assuming color mapping works on all Group by levels** — only available on the first dimension.\n",{"data":37,"body":43},{"name":4,"version":38,"description":6,"context":39,"allowed-tools":40,"sources":41},"1.0.2","fork","Read, Grep, Glob, WebFetch",[42],"https:\u002F\u002Fgithub.com\u002Felastic\u002Fkibana\u002Ftree\u002Fmain\u002Fx-pack\u002Fplatform\u002Fplugins\u002Fshared\u002Flens\u002Fpublic\u002Fvisualizations",{"type":44,"children":45},"root",[46,55,61,68,131,137,144,149,161,166,175,181,194,245,251,257,270,361,367,380,423,435,494,520,526,545,782,788,808,858,863,908,914,935,1092,1098,1437,1443],{"type":47,"tag":48,"props":49,"children":51},"element","h1",{"id":50},"verifying-kibana-lens-chart-settings-from-source-code",[52],{"type":53,"value":54},"text","Verifying Kibana Lens Chart Settings from Source Code",{"type":47,"tag":56,"props":57,"children":58},"p",{},[59],{"type":53,"value":60},"When documenting Lens chart settings, always verify labels, options, and rendering order against the Kibana source code. Do NOT guess UI labels.",{"type":47,"tag":62,"props":63,"children":65},"h2",{"id":64},"key-principles",[66],{"type":53,"value":67},"Key Principles",{"type":47,"tag":69,"props":70,"children":71},"ol",{},[72,93,103,113],{"type":47,"tag":73,"props":74,"children":75},"li",{},[76,91],{"type":47,"tag":77,"props":78,"children":79},"strong",{},[80,82,89],{"type":53,"value":81},"UI labels come from i18n ",{"type":47,"tag":83,"props":84,"children":86},"code",{"className":85},[],[87],{"type":53,"value":88},"defaultMessage",{"type":53,"value":90}," strings",{"type":53,"value":92}," — always extract the exact label.",{"type":47,"tag":73,"props":94,"children":95},{},[96,101],{"type":47,"tag":77,"props":97,"children":98},{},[99],{"type":53,"value":100},"Rendering order in JSX = rendering order in the UI",{"type":53,"value":102}," — document settings in the same order they appear in the component tree.",{"type":47,"tag":73,"props":104,"children":105},{},[106,111],{"type":47,"tag":77,"props":107,"children":108},{},[109],{"type":53,"value":110},"Conditional rendering is everywhere",{"type":53,"value":112}," — many settings only appear under specific conditions (chart type, selected options, number of dimensions). Trace the conditions.",{"type":47,"tag":73,"props":114,"children":115},{},[116,121,123,129],{"type":47,"tag":77,"props":117,"children":118},{},[119],{"type":53,"value":120},"Shared components are parameterized per chart",{"type":53,"value":122}," — the same ",{"type":47,"tag":83,"props":124,"children":126},{"className":125},[],[127],{"type":53,"value":128},"LegendSettings",{"type":53,"value":130}," component behaves differently for treemaps vs waffle vs pie based on props.",{"type":47,"tag":62,"props":132,"children":134},{"id":133},"source-code-layout",[135],{"type":53,"value":136},"Source Code Layout",{"type":47,"tag":138,"props":139,"children":141},"h3",{"id":140},"partition-charts-pie-donut-treemap-mosaic-waffle",[142],{"type":53,"value":143},"Partition charts (pie, donut, treemap, mosaic, waffle)",{"type":47,"tag":56,"props":145,"children":146},{},[147],{"type":53,"value":148},"All partition-type charts share code under:",{"type":47,"tag":150,"props":151,"children":155},"pre",{"className":152,"code":154,"language":53},[153],"language-text","x-pack\u002Fplatform\u002Fplugins\u002Fshared\u002Flens\u002Fpublic\u002Fvisualizations\u002Fpartition\u002F\n├── partition_charts_meta.ts          # Per-chart config (toolbar options, legend config)\n├── toolbar\u002F\n│   ├── style_settings.tsx            # Orchestrates Style panel sections\n│   ├── titles_and_text_settings.tsx  # Slice labels + Slice values options\n│   ├── appearance_settings.tsx       # Donut hole (pie\u002Fdonut only)\n│   └── legend_settings.tsx           # Partition-specific legend wrapper\n",[156],{"type":47,"tag":83,"props":157,"children":159},{"__ignoreMap":158},"",[160],{"type":53,"value":154},{"type":47,"tag":56,"props":162,"children":163},{},[164],{"type":53,"value":165},"Shared legend component:",{"type":47,"tag":150,"props":167,"children":170},{"className":168,"code":169,"language":53},[153],"x-pack\u002Fplatform\u002Fplugins\u002Fshared\u002Flens\u002Fpublic\u002Fshared_components\u002Flegend\u002F\n├── legend_settings.tsx               # Main legend settings (Visibility, Size, Truncation, Nested, Stats)\n├── location\u002Flegend_location_settings.tsx  # Position (only when `location` prop is defined)\n└── size\u002Flegend_size_settings.tsx     # Width\u002FSize dropdown\n",[171],{"type":47,"tag":83,"props":172,"children":173},{"__ignoreMap":158},[174],{"type":53,"value":169},{"type":47,"tag":138,"props":176,"children":178},{"id":177},"other-chart-types",[179],{"type":53,"value":180},"Other chart types",{"type":47,"tag":56,"props":182,"children":183},{},[184,186,192],{"type":53,"value":185},"Each chart type has its own directory under ",{"type":47,"tag":83,"props":187,"children":189},{"className":188},[],[190],{"type":53,"value":191},"visualizations\u002F",{"type":53,"value":193},":",{"type":47,"tag":195,"props":196,"children":197},"ul",{},[198,209,218,227,236],{"type":47,"tag":73,"props":199,"children":200},{},[201,207],{"type":47,"tag":83,"props":202,"children":204},{"className":203},[],[205],{"type":53,"value":206},"visualizations\u002Fxy\u002F",{"type":53,"value":208}," for bar, line, area",{"type":47,"tag":73,"props":210,"children":211},{},[212],{"type":47,"tag":83,"props":213,"children":215},{"className":214},[],[216],{"type":53,"value":217},"visualizations\u002Fheatmap\u002F",{"type":47,"tag":73,"props":219,"children":220},{},[221],{"type":47,"tag":83,"props":222,"children":224},{"className":223},[],[225],{"type":53,"value":226},"visualizations\u002Fgauge\u002F",{"type":47,"tag":73,"props":228,"children":229},{},[230],{"type":47,"tag":83,"props":231,"children":233},{"className":232},[],[234],{"type":53,"value":235},"visualizations\u002Fmetric\u002F",{"type":47,"tag":73,"props":237,"children":238},{},[239],{"type":47,"tag":83,"props":240,"children":242},{"className":241},[],[243],{"type":53,"value":244},"visualizations\u002Ftagcloud\u002F",{"type":47,"tag":62,"props":246,"children":248},{"id":247},"verification-workflow",[249],{"type":53,"value":250},"Verification Workflow",{"type":47,"tag":138,"props":252,"children":254},{"id":253},"step-1-find-the-chart-metadata",[255],{"type":53,"value":256},"Step 1: Find the chart metadata",{"type":47,"tag":56,"props":258,"children":259},{},[260,262,268],{"type":53,"value":261},"For partition charts, start with ",{"type":47,"tag":83,"props":263,"children":265},{"className":264},[],[266],{"type":53,"value":267},"partition_charts_meta.ts",{"type":53,"value":269},". This file defines per-chart:",{"type":47,"tag":195,"props":271,"children":272},{},[273,284,295,306,317,328,339,350],{"type":47,"tag":73,"props":274,"children":275},{},[276,282],{"type":47,"tag":83,"props":277,"children":279},{"className":278},[],[280],{"type":53,"value":281},"toolbar.categoryOptions",{"type":53,"value":283}," — Slice labels options (or empty array if none)",{"type":47,"tag":73,"props":285,"children":286},{},[287,293],{"type":47,"tag":83,"props":288,"children":290},{"className":289},[],[291],{"type":53,"value":292},"toolbar.numberOptions",{"type":53,"value":294}," — Slice values options (or empty array if none)",{"type":47,"tag":73,"props":296,"children":297},{},[298,304],{"type":47,"tag":83,"props":299,"children":301},{"className":300},[],[302],{"type":53,"value":303},"toolbar.emptySizeRatioOptions",{"type":53,"value":305}," — Donut hole options (pie\u002Fdonut only)",{"type":47,"tag":73,"props":307,"children":308},{},[309,315],{"type":47,"tag":83,"props":310,"children":312},{"className":311},[],[313],{"type":53,"value":314},"toolbar.isDisabled",{"type":53,"value":316}," — Whether the Style panel is disabled entirely (waffle)",{"type":47,"tag":73,"props":318,"children":319},{},[320,326],{"type":47,"tag":83,"props":321,"children":323},{"className":322},[],[324],{"type":53,"value":325},"legend.defaultLegendStats",{"type":53,"value":327}," — Enables Statistics\u002FShow value in legend (waffle only)",{"type":47,"tag":73,"props":329,"children":330},{},[331,337],{"type":47,"tag":83,"props":332,"children":334},{"className":333},[],[335],{"type":53,"value":336},"legend.hideNestedLegendSwitch",{"type":53,"value":338}," — Hides the Nested toggle (waffle)",{"type":47,"tag":73,"props":340,"children":341},{},[342,348],{"type":47,"tag":83,"props":343,"children":345},{"className":344},[],[346],{"type":53,"value":347},"legend.getShowLegendDefault",{"type":53,"value":349}," — Default legend visibility behavior for Auto mode",{"type":47,"tag":73,"props":351,"children":352},{},[353,359],{"type":47,"tag":83,"props":354,"children":356},{"className":355},[],[357],{"type":53,"value":358},"maxBuckets",{"type":53,"value":360}," — Maximum Group by dimensions",{"type":47,"tag":138,"props":362,"children":364},{"id":363},"step-2-trace-the-style-settings",[365],{"type":53,"value":366},"Step 2: Trace the Style settings",{"type":47,"tag":56,"props":368,"children":369},{},[370,372,378],{"type":53,"value":371},"Read ",{"type":47,"tag":83,"props":373,"children":375},{"className":374},[],[376],{"type":53,"value":377},"toolbar\u002Fstyle_settings.tsx",{"type":53,"value":379}," to understand the Style panel structure:",{"type":47,"tag":195,"props":381,"children":382},{},[383,410],{"type":47,"tag":73,"props":384,"children":385},{},[386,388,394,396,401,403,408],{"type":53,"value":387},"If ",{"type":47,"tag":83,"props":389,"children":391},{"className":390},[],[392],{"type":53,"value":393},"emptySizeRatioOptions",{"type":53,"value":395}," exists → renders ",{"type":47,"tag":77,"props":397,"children":398},{},[399],{"type":53,"value":400},"Appearance",{"type":53,"value":402}," accordion + ",{"type":47,"tag":77,"props":404,"children":405},{},[406],{"type":53,"value":407},"Titles and text",{"type":53,"value":409}," accordion",{"type":47,"tag":73,"props":411,"children":412},{},[413,415,421],{"type":53,"value":414},"If not → renders only ",{"type":47,"tag":83,"props":416,"children":418},{"className":417},[],[419],{"type":53,"value":420},"PartitionTitlesAndTextSettings",{"type":53,"value":422}," directly (no sub-headers)",{"type":47,"tag":56,"props":424,"children":425},{},[426,428,434],{"type":53,"value":427},"Then read ",{"type":47,"tag":83,"props":429,"children":431},{"className":430},[],[432],{"type":53,"value":433},"toolbar\u002Ftitles_and_text_settings.tsx",{"type":53,"value":193},{"type":47,"tag":195,"props":436,"children":437},{},[438,457,475],{"type":47,"tag":73,"props":439,"children":440},{},[441,447,449,455],{"type":47,"tag":83,"props":442,"children":444},{"className":443},[],[445],{"type":53,"value":446},"categoryOptions",{"type":53,"value":448}," renders as the first button group (label: check i18n key ",{"type":47,"tag":83,"props":450,"children":452},{"className":451},[],[453],{"type":53,"value":454},"xpack.lens.pieChart.labelSliceLabels",{"type":53,"value":456},")",{"type":47,"tag":73,"props":458,"children":459},{},[460,466,468,474],{"type":47,"tag":83,"props":461,"children":463},{"className":462},[],[464],{"type":53,"value":465},"numberOptions",{"type":53,"value":467}," renders as the second button group (label: check i18n key ",{"type":47,"tag":83,"props":469,"children":471},{"className":470},[],[472],{"type":53,"value":473},"xpack.lens.pieChart.sliceValues",{"type":53,"value":456},{"type":47,"tag":73,"props":476,"children":477},{},[478,479,485,487,492],{"type":53,"value":387},{"type":47,"tag":83,"props":480,"children":482},{"className":481},[],[483],{"type":53,"value":484},"numberDisplay === 'percent'",{"type":53,"value":486},", a ",{"type":47,"tag":77,"props":488,"children":489},{},[490],{"type":53,"value":491},"Decimal places",{"type":53,"value":493}," input appears",{"type":47,"tag":56,"props":495,"children":496},{},[497,498,503,505,510,512,518],{"type":53,"value":387},{"type":47,"tag":83,"props":499,"children":501},{"className":500},[],[502],{"type":53,"value":446},{"type":53,"value":504}," is empty, the first button group is hidden. If ",{"type":47,"tag":83,"props":506,"children":508},{"className":507},[],[509],{"type":53,"value":465},{"type":53,"value":511}," is empty, the second button group is hidden. If ",{"type":47,"tag":83,"props":513,"children":515},{"className":514},[],[516],{"type":53,"value":517},"isDisabled",{"type":53,"value":519}," is true, the entire section is disabled\u002Fhidden.",{"type":47,"tag":138,"props":521,"children":523},{"id":522},"step-3-trace-the-legend-settings",[524],{"type":53,"value":525},"Step 3: Trace the Legend settings",{"type":47,"tag":56,"props":527,"children":528},{},[529,530,536,538,543],{"type":53,"value":371},{"type":47,"tag":83,"props":531,"children":533},{"className":532},[],[534],{"type":53,"value":535},"toolbar\u002Flegend_settings.tsx",{"type":53,"value":537}," (partition wrapper) to see what props are passed to the shared ",{"type":47,"tag":83,"props":539,"children":541},{"className":540},[],[542],{"type":53,"value":128},{"type":53,"value":544}," component. Key props to check:",{"type":47,"tag":546,"props":547,"children":548},"table",{},[549,573],{"type":47,"tag":550,"props":551,"children":552},"thead",{},[553],{"type":47,"tag":554,"props":555,"children":556},"tr",{},[557,563,568],{"type":47,"tag":558,"props":559,"children":560},"th",{},[561],{"type":53,"value":562},"Prop",{"type":47,"tag":558,"props":564,"children":565},{},[566],{"type":53,"value":567},"What it controls",{"type":47,"tag":558,"props":569,"children":570},{},[571],{"type":53,"value":572},"How to verify",{"type":47,"tag":574,"props":575,"children":576},"tbody",{},[577,600,637,663,693,731,760],{"type":47,"tag":554,"props":578,"children":579},{},[580,590,595],{"type":47,"tag":581,"props":582,"children":583},"td",{},[584],{"type":47,"tag":83,"props":585,"children":587},{"className":586},[],[588],{"type":53,"value":589},"legendOptions",{"type":47,"tag":581,"props":591,"children":592},{},[593],{"type":53,"value":594},"Visibility options (Auto\u002FShow\u002FHide)",{"type":47,"tag":581,"props":596,"children":597},{},[598],{"type":53,"value":599},"Always present for all partition charts",{"type":47,"tag":554,"props":601,"children":602},{},[603,612,625],{"type":47,"tag":581,"props":604,"children":605},{},[606],{"type":47,"tag":83,"props":607,"children":609},{"className":608},[],[610],{"type":53,"value":611},"position",{"type":47,"tag":581,"props":613,"children":614},{},[615,617,623],{"type":53,"value":616},"Only renders if ",{"type":47,"tag":83,"props":618,"children":620},{"className":619},[],[621],{"type":53,"value":622},"location",{"type":53,"value":624}," is also passed",{"type":47,"tag":581,"props":626,"children":627},{},[628,630,635],{"type":53,"value":629},"Partition charts do NOT pass ",{"type":47,"tag":83,"props":631,"children":633},{"className":632},[],[634],{"type":53,"value":622},{"type":53,"value":636}," → Position hidden",{"type":47,"tag":554,"props":638,"children":639},{},[640,649,654],{"type":47,"tag":581,"props":641,"children":642},{},[643],{"type":47,"tag":83,"props":644,"children":646},{"className":645},[],[647],{"type":53,"value":648},"renderNestedLegendSwitch",{"type":47,"tag":581,"props":650,"children":651},{},[652],{"type":53,"value":653},"Nested toggle",{"type":47,"tag":581,"props":655,"children":656},{},[657],{"type":47,"tag":83,"props":658,"children":660},{"className":659},[],[661],{"type":53,"value":662},"!hideNestedLegendSwitch && groups > 1",{"type":47,"tag":554,"props":664,"children":665},{},[666,675,680],{"type":47,"tag":581,"props":667,"children":668},{},[669],{"type":47,"tag":83,"props":670,"children":672},{"className":671},[],[673],{"type":53,"value":674},"allowedLegendStats",{"type":47,"tag":581,"props":676,"children":677},{},[678],{"type":53,"value":679},"Statistics\u002FShow value",{"type":47,"tag":581,"props":681,"children":682},{},[683,685,691],{"type":53,"value":684},"Only if ",{"type":47,"tag":83,"props":686,"children":688},{"className":687},[],[689],{"type":53,"value":690},"defaultLegendStats",{"type":53,"value":692}," defined in chart meta",{"type":47,"tag":554,"props":694,"children":695},{},[696,713,718],{"type":47,"tag":581,"props":697,"children":698},{},[699,705,707],{"type":47,"tag":83,"props":700,"children":702},{"className":701},[],[703],{"type":53,"value":704},"legendSize",{"type":53,"value":706}," \u002F ",{"type":47,"tag":83,"props":708,"children":710},{"className":709},[],[711],{"type":53,"value":712},"onLegendSizeChange",{"type":47,"tag":581,"props":714,"children":715},{},[716],{"type":53,"value":717},"Width dropdown",{"type":47,"tag":581,"props":719,"children":720},{},[721,723,729],{"type":53,"value":722},"Renders if ",{"type":47,"tag":83,"props":724,"children":726},{"className":725},[],[727],{"type":53,"value":728},"isVerticalLegend",{"type":53,"value":730}," is true",{"type":47,"tag":554,"props":732,"children":733},{},[734,750,755],{"type":47,"tag":581,"props":735,"children":736},{},[737,743,744],{"type":47,"tag":83,"props":738,"children":740},{"className":739},[],[741],{"type":53,"value":742},"shouldTruncate",{"type":53,"value":706},{"type":47,"tag":83,"props":745,"children":747},{"className":746},[],[748],{"type":53,"value":749},"onTruncateLegendChange",{"type":47,"tag":581,"props":751,"children":752},{},[753],{"type":53,"value":754},"Label truncation toggle",{"type":47,"tag":581,"props":756,"children":757},{},[758],{"type":53,"value":759},"Always present when legend not hidden",{"type":47,"tag":554,"props":761,"children":762},{},[763,772,777],{"type":47,"tag":581,"props":764,"children":765},{},[766],{"type":47,"tag":83,"props":767,"children":769},{"className":768},[],[770],{"type":53,"value":771},"showAutoLegendSizeOption",{"type":47,"tag":581,"props":773,"children":774},{},[775],{"type":53,"value":776},"Auto in size dropdown",{"type":47,"tag":581,"props":778,"children":779},{},[780],{"type":53,"value":781},"Only for pre-8.3 visualizations",{"type":47,"tag":138,"props":783,"children":785},{"id":784},"step-4-determine-rendering-order",[786],{"type":53,"value":787},"Step 4: Determine rendering order",{"type":47,"tag":56,"props":789,"children":790},{},[791,793,799,801,806],{"type":53,"value":792},"Read the shared ",{"type":47,"tag":83,"props":794,"children":796},{"className":795},[],[797],{"type":53,"value":798},"legend_settings.tsx",{"type":53,"value":800}," JSX top to bottom. For partition charts (no ",{"type":47,"tag":83,"props":802,"children":804},{"className":803},[],[805],{"type":53,"value":622},{"type":53,"value":807}," prop), the actual rendering order is:",{"type":47,"tag":69,"props":809,"children":810},{},[811,821,831,848],{"type":47,"tag":73,"props":812,"children":813},{},[814,819],{"type":47,"tag":77,"props":815,"children":816},{},[817],{"type":53,"value":818},"Visibility",{"type":53,"value":820}," (always)",{"type":47,"tag":73,"props":822,"children":823},{},[824,829],{"type":47,"tag":77,"props":825,"children":826},{},[827],{"type":53,"value":828},"Width",{"type":53,"value":830}," (when legend not hidden, via LegendSizeSettings)",{"type":47,"tag":73,"props":832,"children":833},{},[834,839,841,846],{"type":47,"tag":77,"props":835,"children":836},{},[837],{"type":53,"value":838},"Label truncation",{"type":53,"value":840}," + ",{"type":47,"tag":77,"props":842,"children":843},{},[844],{"type":53,"value":845},"Line limit",{"type":53,"value":847}," (when legend not hidden)",{"type":47,"tag":73,"props":849,"children":850},{},[851,856],{"type":47,"tag":77,"props":852,"children":853},{},[854],{"type":53,"value":855},"Nested",{"type":53,"value":857}," (when legend not hidden AND multiple groups AND not hideNestedLegendSwitch)",{"type":47,"tag":56,"props":859,"children":860},{},[861],{"type":53,"value":862},"Settings that do NOT render for partition charts:",{"type":47,"tag":195,"props":864,"children":865},{},[866,883,898],{"type":47,"tag":73,"props":867,"children":868},{},[869,874,876,881],{"type":47,"tag":77,"props":870,"children":871},{},[872],{"type":53,"value":873},"Position",{"type":53,"value":875}," — requires ",{"type":47,"tag":83,"props":877,"children":879},{"className":878},[],[880],{"type":53,"value":622},{"type":53,"value":882}," prop (only XY charts pass this)",{"type":47,"tag":73,"props":884,"children":885},{},[886,891,892],{"type":47,"tag":77,"props":887,"children":888},{},[889],{"type":53,"value":890},"Statistics",{"type":53,"value":875},{"type":47,"tag":83,"props":893,"children":895},{"className":894},[],[896],{"type":53,"value":897},"allowedLegendStats.length > 1",{"type":47,"tag":73,"props":899,"children":900},{},[901,906],{"type":47,"tag":77,"props":902,"children":903},{},[904],{"type":53,"value":905},"Show value",{"type":53,"value":907}," — requires exactly 1 allowed legend stat of type Value\u002FCurrentAndLastValue",{"type":47,"tag":138,"props":909,"children":911},{"id":910},"step-5-verify-option-labels",[912],{"type":53,"value":913},"Step 5: Verify option labels",{"type":47,"tag":56,"props":915,"children":916},{},[917,919,925,927,933],{"type":53,"value":918},"For each button group or dropdown, check the ",{"type":47,"tag":83,"props":920,"children":922},{"className":921},[],[923],{"type":53,"value":924},"label",{"type":53,"value":926}," or ",{"type":47,"tag":83,"props":928,"children":930},{"className":929},[],[931],{"type":53,"value":932},"inputDisplay",{"type":53,"value":934}," in the options array. Common pitfalls:",{"type":47,"tag":546,"props":936,"children":937},{},[938,959],{"type":47,"tag":550,"props":939,"children":940},{},[941],{"type":47,"tag":554,"props":942,"children":943},{},[944,949,954],{"type":47,"tag":558,"props":945,"children":946},{},[947],{"type":53,"value":948},"What you might assume",{"type":47,"tag":558,"props":950,"children":951},{},[952],{"type":53,"value":953},"Actual UI label",{"type":47,"tag":558,"props":955,"children":956},{},[957],{"type":53,"value":958},"Source",{"type":47,"tag":574,"props":960,"children":961},{},[962,983,1004,1026,1048,1070],{"type":47,"tag":554,"props":963,"children":964},{},[965,970,975],{"type":47,"tag":581,"props":966,"children":967},{},[968],{"type":53,"value":969},"\"Labels\"",{"type":47,"tag":581,"props":971,"children":972},{},[973],{"type":53,"value":974},"\"Slice labels\"",{"type":47,"tag":581,"props":976,"children":977},{},[978],{"type":47,"tag":83,"props":979,"children":981},{"className":980},[],[982],{"type":53,"value":454},{"type":47,"tag":554,"props":984,"children":985},{},[986,991,996],{"type":47,"tag":581,"props":987,"children":988},{},[989],{"type":53,"value":990},"\"Values\"",{"type":47,"tag":581,"props":992,"children":993},{},[994],{"type":53,"value":995},"\"Slice values\"",{"type":47,"tag":581,"props":997,"children":998},{},[999],{"type":47,"tag":83,"props":1000,"children":1002},{"className":1001},[],[1003],{"type":53,"value":473},{"type":47,"tag":554,"props":1005,"children":1006},{},[1007,1012,1017],{"type":47,"tag":581,"props":1008,"children":1009},{},[1010],{"type":53,"value":1011},"\"Legend size\"",{"type":47,"tag":581,"props":1013,"children":1014},{},[1015],{"type":53,"value":1016},"\"Width\"",{"type":47,"tag":581,"props":1018,"children":1019},{},[1020],{"type":47,"tag":83,"props":1021,"children":1023},{"className":1022},[],[1024],{"type":53,"value":1025},"xpack.lens.shared.legendSizeSetting.label",{"type":47,"tag":554,"props":1027,"children":1028},{},[1029,1034,1039],{"type":47,"tag":581,"props":1030,"children":1031},{},[1032],{"type":53,"value":1033},"\"Truncate\"",{"type":47,"tag":581,"props":1035,"children":1036},{},[1037],{"type":53,"value":1038},"\"Label truncation\"",{"type":47,"tag":581,"props":1040,"children":1041},{},[1042],{"type":47,"tag":83,"props":1043,"children":1045},{"className":1044},[],[1046],{"type":53,"value":1047},"xpack.lens.shared.labelTruncation",{"type":47,"tag":554,"props":1049,"children":1050},{},[1051,1056,1061],{"type":47,"tag":581,"props":1052,"children":1053},{},[1054],{"type":53,"value":1055},"\"Max lines\"",{"type":47,"tag":581,"props":1057,"children":1058},{},[1059],{"type":53,"value":1060},"\"Line limit\"",{"type":47,"tag":581,"props":1062,"children":1063},{},[1064],{"type":47,"tag":83,"props":1065,"children":1067},{"className":1066},[],[1068],{"type":53,"value":1069},"xpack.lens.shared.maxLinesLabel",{"type":47,"tag":554,"props":1071,"children":1072},{},[1073,1078,1083],{"type":47,"tag":581,"props":1074,"children":1075},{},[1076],{"type":53,"value":1077},"\"Show\" (legend)",{"type":47,"tag":581,"props":1079,"children":1080},{},[1081],{"type":53,"value":1082},"\"Show\"",{"type":47,"tag":581,"props":1084,"children":1085},{},[1086],{"type":47,"tag":83,"props":1087,"children":1089},{"className":1088},[],[1090],{"type":53,"value":1091},"xpack.lens.pieChart.legendVisibility.show",{"type":47,"tag":62,"props":1093,"children":1095},{"id":1094},"quick-reference-per-chart-differences",[1096],{"type":53,"value":1097},"Quick Reference: Per-Chart Differences",{"type":47,"tag":546,"props":1099,"children":1100},{},[1101,1132],{"type":47,"tag":550,"props":1102,"children":1103},{},[1104],{"type":47,"tag":554,"props":1105,"children":1106},{},[1107,1112,1117,1122,1127],{"type":47,"tag":558,"props":1108,"children":1109},{},[1110],{"type":53,"value":1111},"Feature",{"type":47,"tag":558,"props":1113,"children":1114},{},[1115],{"type":53,"value":1116},"Pie\u002FDonut",{"type":47,"tag":558,"props":1118,"children":1119},{},[1120],{"type":53,"value":1121},"Treemap",{"type":47,"tag":558,"props":1123,"children":1124},{},[1125],{"type":53,"value":1126},"Mosaic",{"type":47,"tag":558,"props":1128,"children":1129},{},[1130],{"type":53,"value":1131},"Waffle",{"type":47,"tag":574,"props":1133,"children":1134},{},[1135,1162,1187,1213,1237,1261,1285,1310,1333,1356,1383,1410],{"type":47,"tag":554,"props":1136,"children":1137},{},[1138,1143,1148,1153,1158],{"type":47,"tag":581,"props":1139,"children":1140},{},[1141],{"type":53,"value":1142},"Slice labels",{"type":47,"tag":581,"props":1144,"children":1145},{},[1146],{"type":53,"value":1147},"Hide\u002FInside\u002FAuto",{"type":47,"tag":581,"props":1149,"children":1150},{},[1151],{"type":53,"value":1152},"Hide\u002FShow",{"type":47,"tag":581,"props":1154,"children":1155},{},[1156],{"type":53,"value":1157},"(none)",{"type":47,"tag":581,"props":1159,"children":1160},{},[1161],{"type":53,"value":1157},{"type":47,"tag":554,"props":1163,"children":1164},{},[1165,1170,1175,1179,1183],{"type":47,"tag":581,"props":1166,"children":1167},{},[1168],{"type":53,"value":1169},"Slice values",{"type":47,"tag":581,"props":1171,"children":1172},{},[1173],{"type":53,"value":1174},"Hide\u002FInteger\u002FPercentage",{"type":47,"tag":581,"props":1176,"children":1177},{},[1178],{"type":53,"value":1174},{"type":47,"tag":581,"props":1180,"children":1181},{},[1182],{"type":53,"value":1174},{"type":47,"tag":581,"props":1184,"children":1185},{},[1186],{"type":53,"value":1157},{"type":47,"tag":554,"props":1188,"children":1189},{},[1190,1195,1200,1205,1209],{"type":47,"tag":581,"props":1191,"children":1192},{},[1193],{"type":53,"value":1194},"Donut hole",{"type":47,"tag":581,"props":1196,"children":1197},{},[1198],{"type":53,"value":1199},"Yes",{"type":47,"tag":581,"props":1201,"children":1202},{},[1203],{"type":53,"value":1204},"No",{"type":47,"tag":581,"props":1206,"children":1207},{},[1208],{"type":53,"value":1204},{"type":47,"tag":581,"props":1210,"children":1211},{},[1212],{"type":53,"value":1204},{"type":47,"tag":554,"props":1214,"children":1215},{},[1216,1221,1225,1229,1233],{"type":47,"tag":581,"props":1217,"children":1218},{},[1219],{"type":53,"value":1220},"Style panel disabled",{"type":47,"tag":581,"props":1222,"children":1223},{},[1224],{"type":53,"value":1204},{"type":47,"tag":581,"props":1226,"children":1227},{},[1228],{"type":53,"value":1204},{"type":47,"tag":581,"props":1230,"children":1231},{},[1232],{"type":53,"value":1204},{"type":47,"tag":581,"props":1234,"children":1235},{},[1236],{"type":53,"value":1199},{"type":47,"tag":554,"props":1238,"children":1239},{},[1240,1245,1249,1253,1257],{"type":47,"tag":581,"props":1241,"children":1242},{},[1243],{"type":53,"value":1244},"Legend Position",{"type":47,"tag":581,"props":1246,"children":1247},{},[1248],{"type":53,"value":1204},{"type":47,"tag":581,"props":1250,"children":1251},{},[1252],{"type":53,"value":1204},{"type":47,"tag":581,"props":1254,"children":1255},{},[1256],{"type":53,"value":1204},{"type":47,"tag":581,"props":1258,"children":1259},{},[1260],{"type":53,"value":1204},{"type":47,"tag":554,"props":1262,"children":1263},{},[1264,1269,1273,1277,1281],{"type":47,"tag":581,"props":1265,"children":1266},{},[1267],{"type":53,"value":1268},"Legend Width",{"type":47,"tag":581,"props":1270,"children":1271},{},[1272],{"type":53,"value":1199},{"type":47,"tag":581,"props":1274,"children":1275},{},[1276],{"type":53,"value":1199},{"type":47,"tag":581,"props":1278,"children":1279},{},[1280],{"type":53,"value":1199},{"type":47,"tag":581,"props":1282,"children":1283},{},[1284],{"type":53,"value":1199},{"type":47,"tag":554,"props":1286,"children":1287},{},[1288,1293,1298,1302,1306],{"type":47,"tag":581,"props":1289,"children":1290},{},[1291],{"type":53,"value":1292},"Nested legend",{"type":47,"tag":581,"props":1294,"children":1295},{},[1296],{"type":53,"value":1297},"Yes (>1 group)",{"type":47,"tag":581,"props":1299,"children":1300},{},[1301],{"type":53,"value":1297},{"type":47,"tag":581,"props":1303,"children":1304},{},[1305],{"type":53,"value":1297},{"type":47,"tag":581,"props":1307,"children":1308},{},[1309],{"type":53,"value":1204},{"type":47,"tag":554,"props":1311,"children":1312},{},[1313,1317,1321,1325,1329],{"type":47,"tag":581,"props":1314,"children":1315},{},[1316],{"type":53,"value":905},{"type":47,"tag":581,"props":1318,"children":1319},{},[1320],{"type":53,"value":1204},{"type":47,"tag":581,"props":1322,"children":1323},{},[1324],{"type":53,"value":1204},{"type":47,"tag":581,"props":1326,"children":1327},{},[1328],{"type":53,"value":1204},{"type":47,"tag":581,"props":1330,"children":1331},{},[1332],{"type":53,"value":1199},{"type":47,"tag":554,"props":1334,"children":1335},{},[1336,1340,1344,1348,1352],{"type":47,"tag":581,"props":1337,"children":1338},{},[1339],{"type":53,"value":890},{"type":47,"tag":581,"props":1341,"children":1342},{},[1343],{"type":53,"value":1204},{"type":47,"tag":581,"props":1345,"children":1346},{},[1347],{"type":53,"value":1204},{"type":47,"tag":581,"props":1349,"children":1350},{},[1351],{"type":53,"value":1204},{"type":47,"tag":581,"props":1353,"children":1354},{},[1355],{"type":53,"value":1204},{"type":47,"tag":554,"props":1357,"children":1358},{},[1359,1364,1369,1374,1378],{"type":47,"tag":581,"props":1360,"children":1361},{},[1362],{"type":53,"value":1363},"Default legend visibility",{"type":47,"tag":581,"props":1365,"children":1366},{},[1367],{"type":53,"value":1368},"Auto shows when >1 bucket",{"type":47,"tag":581,"props":1370,"children":1371},{},[1372],{"type":53,"value":1373},"Auto hides",{"type":47,"tag":581,"props":1375,"children":1376},{},[1377],{"type":53,"value":1373},{"type":47,"tag":581,"props":1379,"children":1380},{},[1381],{"type":53,"value":1382},"Auto shows always",{"type":47,"tag":554,"props":1384,"children":1385},{},[1386,1391,1396,1401,1405],{"type":47,"tag":581,"props":1387,"children":1388},{},[1389],{"type":53,"value":1390},"Max Group by dimensions",{"type":47,"tag":581,"props":1392,"children":1393},{},[1394],{"type":53,"value":1395},"3",{"type":47,"tag":581,"props":1397,"children":1398},{},[1399],{"type":53,"value":1400},"2",{"type":47,"tag":581,"props":1402,"children":1403},{},[1404],{"type":53,"value":1400},{"type":47,"tag":581,"props":1406,"children":1407},{},[1408],{"type":53,"value":1409},"1",{"type":47,"tag":554,"props":1411,"children":1412},{},[1413,1418,1423,1427,1432],{"type":47,"tag":581,"props":1414,"children":1415},{},[1416],{"type":53,"value":1417},"Color mapping",{"type":47,"tag":581,"props":1419,"children":1420},{},[1421],{"type":53,"value":1422},"First Group by only",{"type":47,"tag":581,"props":1424,"children":1425},{},[1426],{"type":53,"value":1422},{"type":47,"tag":581,"props":1428,"children":1429},{},[1430],{"type":53,"value":1431},"Vertical axis",{"type":47,"tag":581,"props":1433,"children":1434},{},[1435],{"type":53,"value":1436},"Group by",{"type":47,"tag":62,"props":1438,"children":1440},{"id":1439},"common-mistakes-to-avoid",[1441],{"type":53,"value":1442},"Common Mistakes to Avoid",{"type":47,"tag":69,"props":1444,"children":1445},{},[1446,1456,1466,1476,1493,1510,1528],{"type":47,"tag":73,"props":1447,"children":1448},{},[1449,1454],{"type":47,"tag":77,"props":1450,"children":1451},{},[1452],{"type":53,"value":1453},"Assuming Position exists for partition charts",{"type":53,"value":1455}," — it doesn't. Only XY-type charts have Position.",{"type":47,"tag":73,"props":1457,"children":1458},{},[1459,1464],{"type":47,"tag":77,"props":1460,"children":1461},{},[1462],{"type":53,"value":1463},"Using \"Legend size\" instead of \"Width\"",{"type":53,"value":1465}," — the actual label is \"Width\".",{"type":47,"tag":73,"props":1467,"children":1468},{},[1469,1474],{"type":47,"tag":77,"props":1470,"children":1471},{},[1472],{"type":53,"value":1473},"Including Auto in Width options",{"type":53,"value":1475}," — Auto only shows for pre-8.3 visualizations.",{"type":47,"tag":73,"props":1477,"children":1478},{},[1479,1484,1486,1491],{"type":47,"tag":77,"props":1480,"children":1481},{},[1482],{"type":53,"value":1483},"Documenting Statistics for non-waffle charts",{"type":53,"value":1485}," — only waffle has ",{"type":47,"tag":83,"props":1487,"children":1489},{"className":1488},[],[1490],{"type":53,"value":690},{"type":53,"value":1492},".",{"type":47,"tag":73,"props":1494,"children":1495},{},[1496,1501,1503,1508],{"type":47,"tag":77,"props":1497,"children":1498},{},[1499],{"type":53,"value":1500},"Assuming \"Titles and text\" sub-header exists for all charts",{"type":53,"value":1502}," — it only appears when ",{"type":47,"tag":83,"props":1504,"children":1506},{"className":1505},[],[1507],{"type":53,"value":393},{"type":53,"value":1509}," is defined (pie\u002Fdonut).",{"type":47,"tag":73,"props":1511,"children":1512},{},[1513,1518,1520,1526],{"type":47,"tag":77,"props":1514,"children":1515},{},[1516],{"type":53,"value":1517},"Getting the Nested legend condition wrong",{"type":53,"value":1519}," — it requires both ",{"type":47,"tag":83,"props":1521,"children":1523},{"className":1522},[],[1524],{"type":53,"value":1525},"hideNestedLegendSwitch !== true",{"type":53,"value":1527}," AND multiple Group by dimensions.",{"type":47,"tag":73,"props":1529,"children":1530},{},[1531,1536],{"type":47,"tag":77,"props":1532,"children":1533},{},[1534],{"type":53,"value":1535},"Assuming color mapping works on all Group by levels",{"type":53,"value":1537}," — only available on the first dimension.",{"items":1539,"total":1620},[1540,1552,1565,1575,1584,1597,1607],{"slug":1541,"name":1541,"fn":1542,"description":1543,"org":1544,"tags":1545,"stars":23,"repoUrl":24,"updatedAt":1551},"docs-applies-to-tagging","validate applies_to tags in Elastic documentation","Validate and generate applies_to tags in Elastic documentation, including for cumulative docs across versions and deployment types. Use when writing new docs pages, reviewing existing pages for correct applies_to usage, deciding whether to preserve or replace existing version-scoped content, or when content changes lifecycle state (experimental, preview, beta, GA, deprecated, removed).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1546,1547,1548],{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"name":1549,"slug":1550,"type":15},"Technical Writing","technical-writing","2026-07-12T07:50:42.801473",{"slug":1553,"name":1553,"fn":1554,"description":1555,"org":1556,"tags":1557,"stars":23,"repoUrl":24,"updatedAt":1564},"docs-check-style","check documentation for Elastic style compliance","Check documentation for Elastic style guide compliance using Vale linter output and style rules. Use when writing, editing, or reviewing docs to catch voice, tone, grammar, formatting, accessibility, and word choice issues.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1558,1561,1562,1563],{"name":1559,"slug":1560,"type":15},"Accessibility","accessibility",{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"name":1549,"slug":1550,"type":15},"2026-07-12T07:49:36.112751",{"slug":1566,"name":1566,"fn":1567,"description":1568,"org":1569,"tags":1570,"stars":23,"repoUrl":24,"updatedAt":1574},"docs-content-type-checker","check Elastic documentation content types","Check a docs-content page against Elastic content type guidelines (overview, how-to, tutorial, troubleshooting, changelog), or classify a proposed page idea against the content types before drafting. Use when the user asks to check content type compliance, validate page structure, review a doc against content type standards, or decide which content type a planned page should use.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1571,1572,1573],{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"name":1549,"slug":1550,"type":15},"2026-07-12T07:50:36.826563",{"slug":1576,"name":1576,"fn":1577,"description":1578,"org":1579,"tags":1580,"stars":23,"repoUrl":24,"updatedAt":1583},"docs-draft-workflow-docs","draft Elastic Workflows documentation","Draft or update Elastic Workflows documentation pages in explore-analyze\u002Fworkflows\u002F — step references, use cases, how-tos, concepts, and overviews. Use when writing Workflows docs, documenting a step type, turning workflow YAML into documentation, drafting from a doc issue in docs-content or docs-content-internal, or creating a new page under the Workflows docset.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1581,1582],{"name":17,"slug":18,"type":15},{"name":1549,"slug":1550,"type":15},"2026-07-12T07:48:02.16095",{"slug":1585,"name":1585,"fn":1586,"description":1587,"org":1588,"tags":1589,"stars":23,"repoUrl":24,"updatedAt":1596},"docs-fix-changelog","improve Elastic changelog YAML files","Suggest improved text for changelog YAML files against current Elastic standards. Mirrors the pattern catalog from docs-review-changelog to provide consistent fixes. Includes type-title alignment checking and technical content assessment to catch overly technical titles that need user-focused rewrites. Features repository-aware area validation and enhanced confidence scoring. Supports single files or directories. Fetches canonical guidance to stay in sync. Use after review identifies quality issues, or when drafting new changelogs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1590,1591,1592,1593],{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"name":1549,"slug":1550,"type":15},{"name":1594,"slug":1595,"type":15},"YAML","yaml","2026-07-12T07:48:58.570382",{"slug":1598,"name":1598,"fn":1599,"description":1600,"org":1601,"tags":1602,"stars":23,"repoUrl":24,"updatedAt":1606},"docs-flag-jargon-skill","flag Elastic jargon in documentation","Flag Elastic-internal jargon in documentation and suggest plain-language replacements. Use when reviewing, writing, or editing docs to catch terms that external readers would not understand.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1603,1604,1605],{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"name":1549,"slug":1550,"type":15},"2026-07-12T07:49:34.836748",{"slug":1608,"name":1608,"fn":1609,"description":1610,"org":1611,"tags":1612,"stars":23,"repoUrl":24,"updatedAt":1619},"docs-frontmatter-audit","audit Elastic documentation frontmatter","Audit Elastic documentation files for frontmatter completeness and correctness. Checks products, description, and navigation_title fields across a directory. Use when auditing docs metadata, checking frontmatter quality before publishing, or validating a batch of files.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1613,1616,1617,1618],{"name":1614,"slug":1615,"type":15},"Audit","audit",{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"name":1549,"slug":1550,"type":15},"2026-07-12T07:49:39.883351",18,{"items":1622,"total":1792},[1623,1642,1659,1674,1693,1705,1715,1730,1742,1755,1766,1779],{"slug":1624,"name":1624,"fn":1625,"description":1626,"org":1627,"tags":1628,"stars":1639,"repoUrl":1640,"updatedAt":1641},"accessing-benchmark-results","retrieve and analyze Rally benchmark results","Retrieve Rally benchmark results from an external Elasticsearch metrics store. Use to list past races, get a single race's overall (per-task) results, chart a metric's trend across multiple runs, compare two races, or check whether a run converged — e.g. \"show me recent geonames races\", \"what's the service_time trend for nyc_taxis over the last 30 days?\", \"compare these two race-ids\". Applies when datastore.type = elasticsearch is set in ~\u002F.rally\u002Frally.ini.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1629,1632,1635,1636],{"name":1630,"slug":1631,"type":15},"Analytics","analytics",{"name":1633,"slug":1634,"type":15},"Data Analysis","data-analysis",{"name":9,"slug":8,"type":15},{"name":1637,"slug":1638,"type":15},"Performance","performance",2027,"https:\u002F\u002Fgithub.com\u002Felastic\u002Frally","2026-07-12T07:46:38.54144",{"slug":1643,"name":1643,"fn":1644,"description":1645,"org":1646,"tags":1647,"stars":1639,"repoUrl":1640,"updatedAt":1658},"developing-rally","develop and debug Rally source code","Work on Rally's own codebase, not running benchmarks with it. Use when setting up the dev environment, running Rally's tests or linters, navigating its source, debugging Rally's own code, or making changes to Rally itself.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1648,1651,1652,1655],{"name":1649,"slug":1650,"type":15},"Debugging","debugging",{"name":9,"slug":8,"type":15},{"name":1653,"slug":1654,"type":15},"Engineering","engineering",{"name":1656,"slug":1657,"type":15},"Local Development","local-development","2026-07-12T07:46:35.976807",{"slug":1660,"name":1660,"fn":1661,"description":1662,"org":1663,"tags":1664,"stars":1639,"repoUrl":1640,"updatedAt":1673},"running-benchmarks","run Rally benchmarks against Elasticsearch","Run Rally benchmarks (races) against Elasticsearch — an existing\u002Fexternal cluster or a Rally-provisioned distribution — and read the summary report. Use when running a race (any pipeline, track, challenge, target-hosts, or auth) or when interpreting throughput, latency, and service_time results.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1665,1666,1669,1670],{"name":9,"slug":8,"type":15},{"name":1667,"slug":1668,"type":15},"Elasticsearch","elasticsearch",{"name":1637,"slug":1638,"type":15},{"name":1671,"slug":1672,"type":15},"Testing","testing","2026-07-12T07:46:37.277964",{"slug":1675,"name":1675,"fn":1676,"description":1677,"org":1678,"tags":1679,"stars":1690,"repoUrl":1691,"updatedAt":1692},"cloud-access-management","manage Elastic Cloud organization access","Manage Elastic Cloud organization access: invite users, assign roles to Serverless projects, and create or revoke Cloud API keys. Use when granting, modifying, or auditing user access.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1680,1683,1684,1687],{"name":1681,"slug":1682,"type":15},"Cloud","cloud",{"name":9,"slug":8,"type":15},{"name":1685,"slug":1686,"type":15},"Operations","operations",{"name":1688,"slug":1689,"type":15},"Permissions","permissions",531,"https:\u002F\u002Fgithub.com\u002Felastic\u002Fagent-skills","2026-07-12T07:46:44.946285",{"slug":1694,"name":1694,"fn":1695,"description":1696,"org":1697,"tags":1698,"stars":1690,"repoUrl":1691,"updatedAt":1704},"cloud-create-project","create Elastic Cloud Serverless projects","Creates Elastic Cloud Serverless projects (Elasticsearch, Observability, or Security) via the REST API, saves credentials to file, and bootstraps a scoped Elasticsearch API key. Use when creating a new serverless project, provisioning a search or observability environment, or spinning up a new Elastic Cloud project.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1699,1700,1703],{"name":1681,"slug":1682,"type":15},{"name":1701,"slug":1702,"type":15},"Deployment","deployment",{"name":1667,"slug":1668,"type":15},"2026-07-12T07:46:42.353362",{"slug":1706,"name":1706,"fn":1707,"description":1708,"org":1709,"tags":1710,"stars":1690,"repoUrl":1691,"updatedAt":1714},"cloud-manage-project","manage Elastic Cloud Serverless projects","Manages existing Elastic Cloud Serverless projects: list, get, update, delete, reset credentials, resume, and load saved credentials. Connects to existing projects by resolving endpoints and acquiring scoped Elasticsearch API keys. Use when performing day-2 operations on serverless projects, connecting to an existing project, loading or resetting project credentials, or looking up project details.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1711,1712,1713],{"name":1681,"slug":1682,"type":15},{"name":1667,"slug":1668,"type":15},{"name":1685,"slug":1686,"type":15},"2026-07-12T07:46:41.097412",{"slug":1716,"name":1716,"fn":1717,"description":1718,"org":1719,"tags":1720,"stars":1690,"repoUrl":1691,"updatedAt":1729},"cloud-network-security","manage Elastic Cloud network security","Manage Serverless network security (traffic filters): create, update, and delete IP filters and AWS PrivateLink VPC filters. Use when restricting network access or configuring private connectivity.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1721,1722,1723,1726],{"name":1681,"slug":1682,"type":15},{"name":1667,"slug":1668,"type":15},{"name":1724,"slug":1725,"type":15},"Networking","networking",{"name":1727,"slug":1728,"type":15},"Security","security","2026-07-12T07:46:43.675992",{"slug":1731,"name":1731,"fn":1732,"description":1733,"org":1734,"tags":1735,"stars":1690,"repoUrl":1691,"updatedAt":1741},"cloud-setup","configure Elastic Cloud authentication","Configures Elastic Cloud authentication and environment defaults. Use when setting up EC_API_KEY, configuring Cloud API access, or when another cloud skill requires credentials.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1736,1739,1740],{"name":1737,"slug":1738,"type":15},"Authentication","authentication",{"name":1681,"slug":1682,"type":15},{"name":1667,"slug":1668,"type":15},"2026-07-12T07:46:39.783105",{"slug":1743,"name":1743,"fn":1744,"description":1745,"org":1746,"tags":1747,"stars":1690,"repoUrl":1691,"updatedAt":1754},"elasticsearch-audit","configure Elasticsearch security audit logs","Enable, configure, and query Elasticsearch security audit logs. Use when the task involves audit logging setup, event filtering, or investigating security incidents like failed logins.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1748,1749,1750,1753],{"name":1614,"slug":1615,"type":15},{"name":1667,"slug":1668,"type":15},{"name":1751,"slug":1752,"type":15},"Logs","logs",{"name":1727,"slug":1728,"type":15},"2026-07-12T07:47:35.092599",{"slug":1756,"name":1756,"fn":1757,"description":1758,"org":1759,"tags":1760,"stars":1690,"repoUrl":1691,"updatedAt":1765},"elasticsearch-authn","configure Elasticsearch authentication realms","Authenticate to Elasticsearch using native, file-based, LDAP\u002FAD, SAML, OIDC, Kerberos, JWT, or certificate realms. Use when connecting with credentials, choosing a realm, or managing API keys. Assumes the target realms are already configured.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1761,1762,1763,1764],{"name":1737,"slug":1738,"type":15},{"name":9,"slug":8,"type":15},{"name":1667,"slug":1668,"type":15},{"name":1727,"slug":1728,"type":15},"2026-07-12T07:47:41.474547",{"slug":1767,"name":1767,"fn":1768,"description":1769,"org":1770,"tags":1771,"stars":1690,"repoUrl":1691,"updatedAt":1778},"elasticsearch-authz","manage Elasticsearch RBAC and security roles","Manage Elasticsearch RBAC: native users, roles, role mappings, document- and field-level security. Use when creating users or roles, assigning privileges, or mapping external realms like LDAP\u002FSAML.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1772,1773,1774,1777],{"name":9,"slug":8,"type":15},{"name":1667,"slug":1668,"type":15},{"name":1775,"slug":1776,"type":15},"RBAC","rbac",{"name":1727,"slug":1728,"type":15},"2026-07-12T07:47:36.394177",{"slug":1780,"name":1780,"fn":1781,"description":1782,"org":1783,"tags":1784,"stars":1690,"repoUrl":1691,"updatedAt":1791},"elasticsearch-esql","query Elasticsearch data with ES|QL","Execute ES|QL (Elasticsearch Query Language) queries, use when the user wants to query Elasticsearch data, analyze logs, aggregate metrics, explore data, or create charts and dashboards from ES|QL results.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1785,1786,1787,1788],{"name":1630,"slug":1631,"type":15},{"name":1633,"slug":1634,"type":15},{"name":1667,"slug":1668,"type":15},{"name":1789,"slug":1790,"type":15},"SQL","sql","2026-07-12T07:47:40.249533",86]