Line Chart Preset

Line with High/Low and Markers

Line with High/Low and Markers is an OPF line chart preset with canonical workbook metadata, sample data, and engine chart type mapping.

line-with-high-low-and-markersOPF type: SERIES_OF_MIXED_TYPEScalculated

Use Case

Show how one or more metrics change over ordered categories or time.

Data Requirements

3 series, 12 categories, calculated helper workbook, 2 series groups

Group

Trend charts for time-series movement and multi-series comparisons.

Series

3 series across 12 categories

Workbook Range

Sheet1!$A$1:$M$5

Source Slide

Slide 8 in the OPF chart gallery deck

When to Use

Use for revenue, usage, retention, benchmarks, or any metric where direction matters more than isolated values.

When to Avoid

Avoid with unordered categories or when exact part-to-whole composition is the main message.

Best Practices

1

Keep line weights consistent

2

Direct-label series when possible

3

Use markers only when individual points matter

Recommended Companions

OPF Config

charts:line-with-high-low-and-markers
Open Presentation Format
{
  "$schema": "https://pptx.dev/schema/opf/v1",
  "version": "1.0",
  "meta": {
    "title": "PPTX.gallery — charts/line-with-high-low-and-markers"
  },
  "design": {},
  "slides": [
    {
      "id": "gallery-preview-1",
      "layout": "chart",
      "elements": [
        {
          "id": "gallery-chart-1",
          "type": "chart",
          "chartPreset": "line-with-high-low-and-markers",
          "data": {
            "labels": [
              "Q1 2024",
              "Q2 2024",
              "Q3 2024",
              "Q4 2024",
              "Q1 2025",
              "Q2 2025",
              "Q3 2025",
              "Q4 2025",
              "Q1 2026",
              "Q2 2026",
              "Q3 2026",
              "Q4 2026"
            ],
            "datasets": [
              {
                "label": "Value",
                "values": [
                  53,
                  36,
                  55,
                  75,
                  80,
                  20,
                  63,
                  66,
                  27,
                  63,
                  76,
                  54
                ]
              },
              {
                "label": "High",
                "values": [
                  66,
                  51,
                  63,
                  89,
                  98,
                  30,
                  82,
                  71,
                  40,
                  73,
                  84,
                  68
                ]
              },
              {
                "label": "Low",
                "values": [
                  38,
                  23,
                  41,
                  67,
                  73,
                  10,
                  56,
                  53,
                  14,
                  58,
                  62,
                  44
                ]
              }
            ]
          }
        }
      ]
    }
  ]
}
Open in OPF Playground

Preview this config live at pptx.dev/playground.