PostHog · Schema

YAxisSettings

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
scale object
showGridLines boolean
showTicks boolean
startAtZero boolean Whether the Y axis should start at zero
View JSON Schema on GitHub

JSON Schema

posthog-yaxissettings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/YAxisSettings",
  "title": "YAxisSettings",
  "additionalProperties": false,
  "properties": {
    "scale": {
      "default": null,
      "allOf": [
        {
          "$ref": "#/components/schemas/Scale"
        }
      ],
      "nullable": true
    },
    "showGridLines": {
      "default": null,
      "title": "Showgridlines",
      "type": "boolean",
      "nullable": true
    },
    "showTicks": {
      "default": null,
      "title": "Showticks",
      "type": "boolean",
      "nullable": true
    },
    "startAtZero": {
      "default": null,
      "description": "Whether the Y axis should start at zero",
      "title": "Startatzero",
      "type": "boolean",
      "nullable": true
    }
  },
  "type": "object"
}