Docs Lens Chart Page logo

Docs Lens Chart Page

Organization
elastic
docs-lens-chart-page

Create or update a Lens chart documentation page following Elastic docs conventions. Use when writing a new chart type page (pie, bar, metric, gauge, heat map, etc.) or updating an existing one in explore-analyze/visualize/charts/. Relies on lens-chart-settings for verifying UI labels against source code.

Overview

Publisherelastic
Repositoryelastic-docs-skills
Skill namedocs-lens-chart-page
Stars
71
Forks
10
Bundled files
1
LicenseApache-2.0
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 1 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by elastic on GitHub. Read the source before you install it.

Installation

Install the Docs Lens Chart Page AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/elastic/elastic-docs-skills.git /tmp/elastic-docs-skills
mkdir -p .claude/skills
cp -r /tmp/elastic-docs-skills/skills/project/lens-chart-page .claude/skills/docs-lens-chart-page
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Docs Lens Chart Page in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Docs Lens Chart Page on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Docs Lens Chart Page is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Creating Lens Chart Documentation Pages

Use these instructions when creating or updating a documentation page for a Kibana Lens chart type in explore-analyze/visualize/charts/.

Before writing: verify settings against source code

Use the lens-chart-settings skill to verify all UI labels, option values, and rendering order against the Kibana source code before documenting them. Never guess UI labels.

Research resources

Kibana source code paths

Chart typeSource path
Partition (pie, donut, treemap, mosaic, waffle)x-pack/platform/plugins/shared/lens/public/visualizations/partition/
XY (bar, line, area)x-pack/platform/plugins/shared/lens/public/visualizations/xy/
Metricx-pack/platform/plugins/shared/lens/public/visualizations/metric/
Datatablex-pack/platform/plugins/shared/lens/public/visualizations/datatable/

Many visualizations use shared components (in shared_components/) that accept different props per chart. Always check the visualization-specific wrapper to see which props are passed, rather than assuming all shared component options are available.

EUI data visualization guidelines

Existing content to check

  • Main Lens page: explore-analyze/visualize/lens.md — check for content to reference or deduplicate.
  • Other chart pages: explore-analyze/visualize/charts/*.md — follow established patterns.
  • Shared snippets: explore-analyze/_snippets/lens-*.md — reuse instead of duplicating.

Key snippets:

SnippetPurpose
lens-prerequisites.mdPrerequisites paragraph (data views, ES|QL mode)
lens-rank-by-options.mdTop values rank-by options
lens-value-advanced-settings.mdAdvanced settings for value/metric dimensions
lens-breakdown-advanced-settings.mdBreakdown advanced settings
lens-histogram-settings.mdDate histogram settings
line-chart-legend-settings.mdLegend settings including Statistics (line/area)
line-chart-style-settings.mdStyle settings (line/area)

When creating a new chart page, update lens.md to link to it and remove any duplicated content.

File location and frontmatter

Place the file at explore-analyze/visualize/charts/<chart-type>.md with this frontmatter:

yaml
---
navigation_title: <Chart type> charts
description: Instructions and best practices for building <chart type> charts with Kibana Lens in Elastic.
---

Chart-specific dimensions

Chart typePrimary dimensionsAdditional dimensions
Pie / DonutSlice by, Metric(none)
Bar / Line / AreaHorizontal axis, Vertical axisBreakdown
MetricPrimary metricSecondary metric, Maximum value
GaugeMetricMinimum value, Maximum value, Goal
TableMetrics, RowsSplit metrics by

Page structure

Follow this exact section order. Every chart page uses it consistently.

1. Title and introduction

# Build <chart type> charts with {{kib}}
  • One paragraph (2-3 sentences): what the chart does and when it's useful. Focus on purpose.
  • Weave in specific actionable constraints (e.g., "works best with a maximum of 6 slices"). Skip generic advice.
  • Do not create a separate "When to use" section.
  • A line: You can create <chart type> charts in {{kib}} using [**Lens**](../lens.md).
  • A hero image of a representative example.

2. "Build a chart" section

Include the prerequisites snippet before the stepper:

:::{include} ../../_snippets/lens-prerequisites.md
:::

Then use the stepper directive:

::::::{stepper}

:::::{step} Access Lens
**Lens** is {{kib}}'s main visualization editor. You can access it:
- From a dashboard: On the **Dashboards** page, open or create the dashboard where you want to add a <chart type> chart, then add a new visualization.
- From the **Visualize library** page by creating a new visualization.
:::::

:::::{step} Set the visualization to <Chart type>
New visualizations often start as **Bar** charts.

Using the **Visualization type** dropdown, select **<Chart type>**.
:::::

:::::{step} Define the data to show
[Chart-specific data configuration steps]
:::::

:::::{step} Customize the chart to follow best practices
[Best practices as a definition list]
:::::

:::::{step} Save the chart
- If you accessed Lens from a dashboard, select **Save and return** to save the visualization and add it to that dashboard, or select **Save to library** to add the visualization to the Visualize library and reuse it later.
- If you accessed Lens from the Visualize library, select **Save**. A menu opens and offers you to add the visualization to a dashboard and to the Visualize library.
:::::

::::::

Key conventions:

  • Access Lens and Save the chart steps are identical across all chart pages. Copy them verbatim.
  • Define the data to show lists numbered steps for chart-specific dimensions, then "Optionally:" for additional dimensions. Link dimension names to their settings sections (e.g., [**Slice by**](#slice-by-settings)).
  • Customize the chart uses definition list format. List 4-6 actionable best practices. End with a line pointing to the full settings reference.

3. Advanced scenarios (optional)

Only include when teaching a non-obvious technique users wouldn't discover on their own:

  • Using formulas (e.g., computing error rates as a percentage)
  • Configuring multiple metrics for completion progress (waffle)
  • Setting up dynamic bounds or goals from data (gauge)
  • Defining custom color ranges (heat map)
  • Configuring color bands with thresholds (gauge)

Do NOT create scenarios that are just "use the chart with different fields". For simpler chart types, the Examples section is sufficient.

When including scenarios:

  • Each scenario gets its own ## or ### heading with an anchor ID.
  • Use concrete examples based on Kibana Sample Data when possible.
Sample data considerations
  • The response field in web logs is a text field — KQL filters must use pattern matching (response: 2*), not numeric comparisons.
  • In sample ecommerce data, taxful_total_price and taxless_total_price are identical.
  • Multiple comparable numeric fields are rare. When sample data doesn't support a scenario, use a conceptual example with realistic field names and add a :::note explaining users need to adapt to their data.

4. " settings" section

Document every configuration option in the Lens editor, organized by dimension/panel.

Structure each dimension as:

### <Dimension> settings [<dimension>-settings]

Within each dimension, use two top-level definition list entries: **Data** and **Appearance**.

Data:

  • List all available functions/aggregation types.
  • For each function, document the Field selector first, then function-specific sub-options as nested bullets.
  • Field selector conventions:
    • Top values: Supports up to 4 fields. Multiple fields create multi-term grouping. Fields can be reordered by dragging.
    • Date histogram: Single date field only.
    • Intervals: Single numeric field only.
    • Filters: No field selector (KQL queries reference fields directly).
  • Reuse shared snippets wherever applicable.

Appearance:

  • List visual options: Name, Value format, Color, Series color, Color mapping, etc.

After dimension-specific settings, add a ### General layout section for global settings ({icon}`brush` Style and legend). Split into #### Style settings and #### Legend settings as needed.

Legend settings vary by chart type:

SettingXY chartsPartition chartsNotes
VisibilityYesYesAuto / Show / Hide
PositionYesNoPartition charts don't pass location
StatisticsYesNoControlled by defaultLegendStats
Nested legendNoYes (>1 group)Multiple Group by dimensions required
Label truncationYesYes
WidthYesYesUI label is "Width", not "Legend size"

5. " examples" section

  • 2-4 real-world examples using Kibana Sample Data.
  • Use definition list format with bold example title.
  • Structure each example:
    • * Example based on: <sample data set name>
    • Configuration keys as bullet points (Slice by, Metric, Style, Legend, etc.)
    • An image of the result, sized with "=60%" or "=70%"
  • Showcase different features (e.g., basic config, donut variant, filters, multiple metrics).

Chart-page-specific formatting

For general syntax, refer to the docs-syntax-help skill. These conventions are specific to chart pages:

Images

  • Store at explore-analyze/images/<image-name>.png
  • Reference with: ![Alt text](/explore-analyze/images/<image-name>.png "=60%")
  • Sizing: "=50%" for smaller inline images, "=60%" for examples, "=70%" for settings screenshots.
  • Alt text should be descriptive, not "screenshot".

Icons

IconSyntaxUsage
Style/brush{icon}\brush``Style settings panel
Layer settings{icon}\app_management``Layer settings (9.3+/Serverless)
Actions menu{icon}\boxes_horizontal``Layer actions menu (9.0-9.2)
Add layer{icon}\plus_in_square``Add layer button

For the legend icon, use: ![Legend icon](/explore-analyze/images/kibana-legend-icon.svg "")

Cross-references

  • Other chart types: [bar charts](bar-charts.md)
  • Lens page: [**Lens**](../lens.md)
  • Lens features: [Assign colors to terms](../lens.md#assign-colors-to-terms)
  • Sample data: [sample data](/manage-data/ingest/sample-data.md)

Internal links

Link from steps to settings sections:

2. Configure the [**Slice by**](#slice-by-settings) dimension.
3. Configure the [**Metric**](#metric-settings) dimension.

Link from best practices to advanced scenarios when relevant.

Variables

Use {{kib}} (Kibana), {{es}} (Elasticsearch), {{data-source}} (data view / data source).

Checklist

  • Frontmatter has navigation_title and description
  • Hero image exists and is referenced
  • "Build a chart" stepper uses standard Access Lens / Save steps
  • Prerequisites snippet included before the stepper
  • All settings verified against Kibana source code (use lens-chart-settings skill)
  • All settings from the Lens editor are documented in the Settings section
  • Shared snippets included where applicable (not duplicated)
  • Examples use Kibana Sample Data and include images
  • Internal links from steps to settings sections
  • Links from best practices to related advanced scenarios
  • lens.md updated to link to the new page

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Docs Lens Chart Page AI skill do?

Create or update a Lens chart documentation page following Elastic docs conventions. Use when writing a new chart type page (pie, bar, metric, gauge, heat map, etc.) or updating an existing one in explore-analyze/visualize/charts/. Relies on lens-chart-settings for verifying UI labels against source code.

Why use Docs Lens Chart Page on TypingMind?

Because you install it once and use it with any model. Docs Lens Chart Page is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Docs Lens Chart Page in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/elastic/elastic-docs-skills/tree/main/skills/project/lens-chart-page. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Docs Lens Chart Page?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Docs Lens Chart Page?

As many as you like. As long as a model supports skills, you can use Docs Lens Chart Page with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Docs Lens Chart Page AI skill free?

Yes. It is published on GitHub by elastic under the Apache-2.0 license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇