PostHog · Schema

ChartSettingsDisplay

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
color string
displayType object
label string
trendLine boolean
yAxisPosition object
View JSON Schema on GitHub

JSON Schema

posthog-chartsettingsdisplay-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChartSettingsDisplay",
  "title": "ChartSettingsDisplay",
  "additionalProperties": false,
  "properties": {
    "color": {
      "default": null,
      "title": "Color",
      "type": "string",
      "nullable": true
    },
    "displayType": {
      "default": null,
      "allOf": [
        {
          "$ref": "#/components/schemas/DisplayType"
        }
      ],
      "nullable": true
    },
    "label": {
      "default": null,
      "title": "Label",
      "type": "string",
      "nullable": true
    },
    "trendLine": {
      "default": null,
      "title": "Trendline",
      "type": "boolean",
      "nullable": true
    },
    "yAxisPosition": {
      "default": null,
      "allOf": [
        {
          "$ref": "#/components/schemas/YAxisPosition"
        }
      ],
      "nullable": true
    }
  },
  "type": "object"
}