[
  {
    "id": "oj-c.LineChart",
    "name": "LineChart",
    "memberof": "oj-c",
    "kind": "class",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "ojcomponent": true,
    "isvcomponent": true,
    "since": "16.0.0",
    "longname": "oj-c.LineChart",
    "pack": "oj-c",
    "classdesc": "<h3 id=\"lineChartOverview-section\">\n  JET Line Chart\n  <a class=\"bookmarkable-link\" title=\"Bookmarkable Link\" href=\"#lineChartOverview-section\"></a>\n</h3>\n\n<p>A line chart displays information graphically using data points connected by straight or curved lines, making relationships among the data easier to understand.</p>\n\n<pre class=\"prettyprint\">\n<code>\n&lt;oj-c-line-chart\n  data=\"[[dataProvider]]\">\n&lt;/oj-c-line-chart>\n</code>\n</pre>\n\n<h3 id=\"a11y-section\">\n  Accessibility\n  <a class=\"bookmarkable-link\" title=\"Bookmarkable Link\" href=\"#a11y-section\"></a>\n</h3>\nTo make your component accessible, the application is required to include contextual information for screen readers using either:\n <ul>\n  <li>aria-labelledby</li>\n  <li>aria-label</li>\n </ul>\nIt is also recommended to include appropriate short-desc property values for your items to enhance accessibility.\n<p>\n If your application has custom keyboard and touch shortcuts implemented for the component, these shortcuts can conflict with those of the component. It is the application's responsibility to disclose these custom shortcuts, possibly via a datatip or help popup.\n</p>\n<p>\n When setting color, applications are responsible for making sure that the color meets the <a target=\"_blank\" href=\"https://www.w3.org/TR/WCAG21/#contrast-minimum\">minimum contrast requirements</a>.\n</p>\n\n<h3 id=\"keyboard-section\">\n  Keyboard End User Information\n  <a class=\"bookmarkable-link\" title=\"Bookmarkable Link\" href=\"#keyboard-section\"></a>\n</h3>\n<table class=\"keyboard-table\">\n  <thead>\n    <tr>\n      <th>Key</th>\n      <th>Action</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr>\n      <td><kbd>Tab</kbd></td>\n      <td>Move focus to next element.</td>\n    </tr>\n    <tr>\n      <td><kbd>Shift + Tab</kbd></td>\n      <td>Move focus to previous element.</td>\n    </tr>\n    <tr>\n      <td><kbd>UpArrow</kbd></td>\n      <td>Move focus and selection to previous data item.</td>\n    </tr>\n    <tr>\n      <td><kbd>DownArrow</kbd></td>\n      <td>Move focus and selection to next data item.</td>\n    </tr>\n    <tr>\n      <td><kbd>LeftArrow</kbd></td>\n      <td>Move focus and selection to previous data item.</td>\n    </tr>\n    <tr>\n      <td><kbd>RightArrow</kbd></td>\n      <td>Move focus and selection to next data item.</td>\n    </tr>\n    <tr>\n      <td><kbd>Shift + UpArrow</kbd></td>\n      <td>Move focus and multi-select previous data item.</td>\n    </tr>\n    <tr>\n      <td><kbd>Shift + DownArrow</kbd></td>\n      <td>Move focus and multi-select next data item.</td>\n    </tr>\n    <tr>\n      <td><kbd>Shift + LeftArrow</kbd></td>\n      <td>Move focus and multi-select previous data item.</td>\n    </tr>\n    <tr>\n      <td><kbd>Shift + RightArrow</kbd></td>\n      <td>Move focus and multi-select next data item.</td>\n    </tr>\n    <tr>\n      <td><kbd>Ctrl + UpArrow</kbd></td>\n      <td>Move focus to previous data item, without changing the current selection.</td>\n    </tr>\n    <tr>\n      <td><kbd>Ctrl + DownArrow</kbd></td>\n      <td>Move focus to next data item, without changing the current selection.</td>\n    </tr>\n    <tr>\n      <td><kbd>Ctrl + LeftArrow</kbd></td>\n      <td>Move focus to previous data item, without changing the current selection.</td>\n    </tr>\n    <tr>\n      <td><kbd>Ctrl + RightArrow</kbd></td>\n      <td>Move focus to next data item, without changing the current selection.</td>\n    </tr>\n    <tr>\n      <td><kbd>Ctrl + Spacebar</kbd></td>\n      <td>Multi-select data item with focus.</td>\n    </tr>\n    <tr>\n      <td><kbd>= or +</kbd></td>\n      <td>Zoom in one level if zooming is enabled.</td>\n    </tr>\n    <tr>\n      <td><kbd>- or _</kbd></td>\n      <td>Zoom out one level if zooming is enabled.</td>\n    </tr>\n     <tr>\n      <td><kbd>PageUp or Shift + PageUp</kbd></td>\n      <td>Pan left in left-to-right locales. Pan right in right-to-left locales.</td>\n    </tr>\n    <tr>\n      <td><kbd>PageDown or Shift + PageDown</kbd></td>\n      <td>Pan right in left-to-right locales. Pan left in right-to-left locales.</td>\n    </tr>\n    <tr>\n      <td><kbd>Enter</kbd></td>\n      <td>Drill on data item, categorical axis label, or legend item when <code class=\"prettyprint\">drilling</code> is enabled.</td>\n    </tr>\n    <tr>\n      <td><kbd>Shift+F10</kbd></td>\n      <td>Launch the context menu if there is one associated with the current item.</td>\n    </tr>\n  </tbody>\n</table>\n\n<h3 id=\"perf-section\">\n  Performance\n  <a class=\"bookmarkable-link\" title=\"Bookmarkable Link\" href=\"#perf-section\"></a>\n</h3>\n\n<h4>Data Set Size</h4>\n<p>As a rule of thumb, it's recommended that applications only set usable data densities on the chart. For example,\n   it's not recommended to show more than 500 lines on a 500 pixel wide chart, since the  lines will be unusably thin.\n   While there are several optimizations within the chart to deal with large data sets, it's always more efficient to\n   reduce the data set size as early as possible. Future optimizations will focus on improving end user experience as\n   well as developer productivity for common use cases.\n</p>\n\n<h4>Styling</h4>\n<p>Use the highest level property available. For example, consider setting styling properties on\n   <code class=\"prettyprint\">styleDefaults</code> or <code class=\"prettyprint\">series</code>, instead of styling properties\n   on the individual data items. The chart can take advantage of these higher level properties to apply the style properties on\n   containers, saving expensive DOM calls.\n</p>\n\n\n<h3 id=\"touch-section\">\nTouch End User Information\n  <a class=\"bookmarkable-link\" title=\"Bookmarkable Link\" href=\"#touch-section\"></a>\n</h3>\n\n<table class=\"keyboard-table\">\n  <thead>\n    <tr>\n      <th>Target</th>\n      <th>Gesture</th>\n      <th>Action</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr>\n      <td rowspan=\"5\">Data Item</td>\n      <td rowspan=\"2\"><kbd>Tap</kbd></td>\n      <td>Select when <code class=\"prettyprint\">selectionMode</code> is enabled.</td>\n    </tr>\n    <tr>\n      <td>Drill when <code class=\"prettyprint\">drilling</code> is enabled and <code class=\"prettyprint\">selectionMode</code> is <code class=\"prettyprint\">none</code>.</td>\n    </tr>\n    <tr>\n      <td><kbd>Double Tap</kbd></td>\n      <td>Drill when <code class=\"prettyprint\">drilling</code> is enabled and <code class=\"prettyprint\">selectionMode</code> is enabled.</td>\n    </tr>\n    <tr>\n      <td rowspan=\"2\"><kbd>Press & Hold</kbd></td>\n      <td>Display datatip.</td>\n    </tr>\n    <tr>\n      <td>Display context menu on release.</td>\n    </tr>\n    <tr>\n      <td rowspan=\"2\">Categorical Axis Item</td>\n      <td><kbd>Tap</kbd></td>\n      <td>Drill when <code class=\"prettyprint\">drilling</code> is enabled.</td>\n    </tr>\n    <tr>\n       <td><kbd>Press & Hold</kbd></td>\n       <td>Display context menu on release.</td>\n    </tr>\n    <tr>\n      <td rowspan=\"2\">Legend Item</td>\n      <td rowspan=\"2\"><kbd>Tap</kbd></td>\n      <td>Drill when <code class=\"prettyprint\">drilling</code> is enabled.</td>\n    </tr>\n    <tr>\n      <td>Filter when <code class=\"prettyprint\">hideAndShowBehavior</code> is enabled.</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\">Plot Area</td>\n      <td rowspan=\"2\"><kbd>Drag</kbd></td>\n      <td>Pan when panning is enabled and toggled into that mode.</td>\n    </tr>\n    <tr>\n      <td>Marquee select when <code class=\"prettyprint\">selectionMode</code> is <code class=\"prettyprint\">multiple</code> and toggled into that mode.</td>\n    </tr>\n    <tr>\n      <td><kbd>Pinch-close</kbd></td>\n      <td>Zoom out when zooming is enabled.</td>\n    </tr>\n    <tr>\n      <td><kbd>Spread-open</kbd></td>\n      <td>Zoom in when zooming is enabled.</td>\n    </tr>\n    <tr>\n       <td><kbd>Press & Hold</kbd></td>\n       <td>Display context menu on release.</td>\n    </tr>\n    <tr>\n       <td>Series Line</td>\n       <td><kbd>Press & Hold</kbd></td>\n       <td>Display context menu on release.</td>\n    </tr>\n    <tr>\n       <td>Axis Title</td>\n       <td><kbd>Press & Hold</kbd></td>\n       <td>Display context menu on release.</td>\n    </tr>\n  </tbody>\n</table>",
    "scope": "static",
    "tagWithoutBrackets": "oj-c-line-chart",
    "tagWithBrackets": "<oj-c-line-chart>",
    "domInterface": "CLineChartElement",
    "ojPageTitle": "&lt;oj-c-line-chart>",
    "camelCaseName": "LineChart",
    "ojPageTitlePrefix": "Element: ",
    "ojtsvcomponent": true,
    "tstype": {
      "target": "Type",
      "value": "interface CLineChartElement<K extends string | number,D extends oj-c.LineChart.LineItem<K> | any> extends JetElement<LineChartElementSettableProperties<K,D>>"
    },
    "ojsignature": [
      {
        "target": "Type",
        "value": "interface CLineChartElement<K extends string | number,D extends oj-c.LineChart.LineItem<K> | any> extends JetElement<LineChartElementSettableProperties<K,D>>"
      }
    ],
    "tsdeprecated": [
      {
        "type": "candidate",
        "since": "17.0.0"
      }
    ],
    "extension": {
      "catalog": {
        "category": "Visualizations"
      },
      "vbdt": {
        "module": "oj-c/line-chart",
        "defaultColumns": 6,
        "minColumns": 1
      },
      "oracle": {
        "icon": "oj-ux-ico-line-chart",
        "uxSpecs": [
          "line-chart"
        ]
      }
    },
    "ojmodule": "line-chart"
  },
  {
    "id": "oj-c.LineChart#groupComparator",
    "name": "groupComparator",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#groupComparator",
    "scope": "instance",
    "type": {
      "names": [
        "function"
      ]
    },
    "optional": true,
    "ojdisplayname": "Group Comparator",
    "ojshortdesc": "A comparator function that determines the ordering of the chart groups when using a DataProvider. If undefined, the group will follow the order in which they are found in the data.",
    "description": "A comparator function that determines the ordering of the chart groups when using a DataProvider.\nIf undefined, the group will follow the order in which they are found in the data. The group objects will have the same properties as the context for <a href=\"#groupTemplate\">groupTemplate's $current</a>.\nIf groupComparator(a, b) is less than 0, chart group a comes before chart group b.\nIf groupComparator(a, b) is 0, the original order is preserved.\nIf groupComparator(a, b) is greater than 0, chart group b comes before chart group a.",
    "tstype": [
      {
        "target": "Type",
        "value": "(context1: oj-c.LineChart.ChartGroupTemplateContext<K, D>, context2: oj-c.LineChart.ChartGroupTemplateContext<K, D>) => number",
        "jsdocOverride": true
      }
    ]
  },
  {
    "id": "oj-c.LineChart#stack",
    "name": "stack",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#stack",
    "scope": "instance",
    "type": {
      "names": [
        "\"off\"",
        "\"on\""
      ]
    },
    "optional": true,
    "ojdisplayname": "stack",
    "description": "Defines whether the data items are stacked.",
    "ojvalues": [
      {
        "name": "on",
        "description": "Data items belonging to same group will be stacked.",
        "displayName": "On",
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "off",
        "description": "Data items will not be stacked.",
        "displayName": "Off",
        "type": {
          "names": [
            "string"
          ]
        }
      }
    ],
    "ojvalueskeeporder": true,
    "defaultvalue": "'off'"
  },
  {
    "id": "oj-c.LineChart#drilling",
    "name": "drilling",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#drilling",
    "scope": "instance",
    "type": {
      "names": [
        "\"off\"",
        "\"on\"",
        "\"groupsOnly\"",
        "\"seriesOnly\""
      ]
    },
    "optional": true,
    "ojdisplayname": "Drilling",
    "description": "Whether drilling is enabled. Drillable objects will show a pointer cursor on hover and fire an <code class=\"prettyprint\">ojDrill</code> event on click (double click if selection is enabled). Use \"on\" to enable drilling for all series objects (legend items), group objects (x-axis labels), and data items. Use \"seriesOnly\" or \"groupsOnly\" to enable drilling for series objects or group objects only. To enable or disable drilling on individual series, group, or data item, use the drilling attribute in each series, group, or data item.",
    "ojvalues": [
      {
        "name": "on",
        "description": "Drilling is enabled on data items, axis labels and legend items.",
        "displayName": "On",
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "seriesOnly",
        "description": "Drilling is enabled only on legend items. Use multiSeriesDrilling attribute to enable drilling on the legend item for Other.",
        "displayName": "Off",
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "groupsOnly",
        "description": "Drilling is enabled only on axis labels.",
        "displayName": "On",
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "off",
        "description": "Drilling is not enabled.",
        "displayName": "Off",
        "type": {
          "names": [
            "string"
          ]
        }
      }
    ],
    "ojvalueskeeporder": true,
    "defaultvalue": "'off'"
  },
  {
    "id": "oj-c.LineChart#orientation",
    "name": "orientation",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#orientation",
    "scope": "instance",
    "type": {
      "names": [
        "\"horizontal\"",
        "\"vertical\""
      ]
    },
    "optional": true,
    "ojdisplayname": "Orientation",
    "description": "The orientation of the chart.",
    "ojvalues": [
      {
        "name": "horizontal",
        "description": "Chart will be horizontally oriented.",
        "displayName": "On",
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "vertical",
        "description": "Chart will be vertically oriented.",
        "displayName": "Off",
        "type": {
          "names": [
            "string"
          ]
        }
      }
    ],
    "ojvalueskeeporder": true,
    "defaultvalue": "'vertical'"
  },
  {
    "id": "oj-c.LineChart#splitDualY",
    "name": "splitDualY",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#splitDualY",
    "scope": "instance",
    "type": {
      "names": [
        "\"off\"",
        "\"on\""
      ]
    },
    "optional": true,
    "ojdisplayname": "Split Dual Y",
    "ojshortdesc": "Defines whether the plot area is split into two sections.",
    "description": "Defines whether the plot area is split into two sections, so that sets of data assigned to the different Y-axes appear in different parts of the plot area.",
    "ojvalues": [
      {
        "name": "on",
        "description": "Plot Area is split into two sections, one for each Y-axis.",
        "displayName": "On",
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "off",
        "description": "Plot Area is not split.",
        "displayName": "Off",
        "type": {
          "names": [
            "string"
          ]
        }
      }
    ],
    "ojvalueskeeporder": true,
    "defaultvalue": "'off'"
  },
  {
    "id": "oj-c.LineChart#splitterPosition",
    "name": "splitterPosition",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#splitterPosition",
    "scope": "instance",
    "type": {
      "names": [
        "number"
      ]
    },
    "optional": true,
    "ojdisplayname": "Splitter Position",
    "ojshortdesc": "Specifies the fraction of the space that is given to the Y-axis subchart.",
    "description": "In a split dual-Y chart, specifies the fraction of the space that is given to the Y-axis subchart. Valid values are numbers from 0 to 1.",
    "defaultvalue": 0.5
  },
  {
    "id": "oj-c.LineChart#timeAxisType",
    "name": "timeAxisType",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#timeAxisType",
    "scope": "instance",
    "type": {
      "names": [
        "\"enabled\"",
        "\"mixedFrequency\"",
        "\"skipGaps\""
      ]
    },
    "optional": true,
    "ojdisplayname": "TimeAxisType",
    "ojshortdesc": "The time axis type of the chart x axis.",
    "description": "The type of time axis to display in the chart. If the value is \"enabled\" or \"skipGaps\", the time values must be provided through the \"group-id\" attribute of the <a target=\"_blank\" href=\"oj-c.LineChartItem.html\">oj-c-line-chart-item</a>  element. In this case, stacking is supported. If the value is \"skipGaps\", the groups will be rendered at a regular interval regardless of any time gaps that may exist in the data.\nIf the value is \"mixedFrequency\", the time values must be provided through the \"x\" attribute of the <a target=\"_blank\" href=\"oj-c.LineChartItem.html\">oj-c-line-chart-item</a> element. In this case stacking is not supported.\nThe time values provided must be an ISO date string.",
    "ojvalues": [
      {
        "name": "enabled",
        "description": "The regular time axis type. Time values are passed using <a target='_blank' href='oj-c.LineChartItem.html'>oj-c-line-chart-item</a> group-id attribute.",
        "displayName": "Regular",
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "mixedFrequency",
        "description": "The mixed frequency time axis type. The mixed frequency time axis type is used when different series have different sampling frequencies. Time values are passed using <a target='_blank' href='oj-c.LineChartItem.html'>oj-c-line-chart-item</a> x attribute.",
        "displayName": "MixedFrequency",
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "skipGaps",
        "description": "The regular time axis type. Time values are passed using <a target='_blank' href='oj-c.LineChartItem.html'>oj-c-line-chart-item</a> group-id attribute. Gap between time values will be ignored.",
        "displayName": "SkipGaps",
        "type": {
          "names": [
            "string"
          ]
        }
      }
    ],
    "ojvalueskeeporder": true
  },
  {
    "id": "oj-c.LineChart#yAxis",
    "name": "yAxis",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#yAxis",
    "scope": "instance",
    "type": {
      "names": [
        "object"
      ]
    },
    "optional": true,
    "ojdisplayname": "Y Axis",
    "ojshortdesc": "The yAxis options for the chart.",
    "description": "The yAxis options for the chart.",
    "tstype": [
      {
        "target": "Type",
        "value": "oj-c.LineChart.YAxis",
        "jsdocOverride": true
      }
    ]
  },
  {
    "id": "oj-c.LineChart#y2Axis",
    "name": "y2Axis",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#y2Axis",
    "scope": "instance",
    "type": {
      "names": [
        "object"
      ]
    },
    "optional": true,
    "ojdisplayname": "Y2 Axis",
    "ojshortdesc": "The y2Axis options for the chart.",
    "description": "The y2Axis options for the chart.",
    "tstype": [
      {
        "target": "Type",
        "value": "oj-c.LineChart.Y2Axis",
        "jsdocOverride": true
      }
    ]
  },
  {
    "id": "oj-c.LineChart#xAxis",
    "name": "xAxis",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#xAxis",
    "scope": "instance",
    "type": {
      "names": [
        "object"
      ]
    },
    "optional": true,
    "ojdisplayname": "X Axis",
    "ojshortdesc": "The xAxis options for the chart.",
    "description": "The xAxis options for the chart.",
    "tstype": [
      {
        "target": "Type",
        "value": "oj-c.LineChart.XAxis",
        "jsdocOverride": true
      }
    ]
  },
  {
    "id": "oj-c.LineChart#plotArea",
    "name": "plotArea",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#plotArea",
    "scope": "instance",
    "type": {
      "names": [
        "object"
      ]
    },
    "optional": true,
    "ojdisplayname": "Plot Area",
    "ojshortdesc": "The plot area of the chart.",
    "description": "The plot area of the chart.",
    "tstype": [
      {
        "target": "Type",
        "value": "oj-c.LineChart.PlotArea",
        "jsdocOverride": true
      }
    ]
  },
  {
    "id": "oj-c.LineChart#zoomAndScroll",
    "name": "zoomAndScroll",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#zoomAndScroll",
    "scope": "instance",
    "type": {
      "names": [
        "\"off\"",
        "\"live\""
      ]
    },
    "optional": true,
    "ojdisplayname": "Zoom And Scroll",
    "ojshortdesc": "The zoom and scroll behavior.",
    "description": "The zoom and scroll behavior."
  },
  {
    "id": "oj-c.LineChart#valueFormats",
    "name": "valueFormats",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#valueFormats",
    "scope": "instance",
    "type": {
      "names": [
        "object"
      ]
    },
    "optional": true,
    "ojdisplayname": "Value Formats",
    "ojshortdesc": "An object specifying value formatting and datatip behavior, whose keys generally correspond to the attribute names on the data items.",
    "description": "An object specifying value formatting and datatip behavior, whose keys generally correspond to the attribute names on the data items.",
    "tstype": [
      {
        "target": "Type",
        "value": "oj-c.LineChart.ValueFormats",
        "jsdocOverride": true
      }
    ]
  },
  {
    "id": "oj-c.LineChart#styleDefaults",
    "name": "styleDefaults",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#styleDefaults",
    "scope": "instance",
    "type": {
      "names": [
        "object"
      ]
    },
    "optional": true,
    "ojdisplayname": "Style Defaults",
    "ojshortdesc": "An object specifying default styles for chart style attributes..",
    "description": "Object type defining the default styles for series colors, marker shapes, and other style attributes.\nProperties specified on this object may be overridden by specifications on the data object.",
    "tstype": [
      {
        "target": "Type",
        "value": "oj-c.LineChart.StyleDefaults",
        "jsdocOverride": true
      }
    ]
  },
  {
    "id": "oj-c.LineChart#seriesComparator",
    "name": "seriesComparator",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#seriesComparator",
    "scope": "instance",
    "type": {
      "names": [
        "function"
      ]
    },
    "optional": true,
    "ojdisplayname": "Series Comparator",
    "ojshortdesc": "A comparator function that determines the ordering of the chart series when using a DataProvider. If undefined, the series will follow the order in which they are found in the data.",
    "description": "A comparator function that determines the ordering of the chart series when using a DataProvider.\nIf undefined, the series will follow the order in which they are found in the data. The series objects will have the same properties as the context for <a href=\"#seriesTemplate\">seriesTemplate's $current</a>.\nIf seriesComparator(a, b) is less than 0, chart series a comes before chart series b.\nIf seriesComparator(a, b) is 0, the original order is preserved.\nIf seriesComparator(a, b) is greater than 0, chart series b comes before chart series a.",
    "tstype": [
      {
        "target": "Type",
        "value": "(context1: oj-c.LineChart.ChartSeriesTemplateContext<K, D>, context2: oj-c.LineChart.ChartSeriesTemplateContext<K, D>) => number",
        "jsdocOverride": true
      }
    ]
  },
  {
    "id": "oj-c.LineChart#data",
    "name": "data",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#data",
    "scope": "instance",
    "type": {
      "names": [
        "DataProvider|null"
      ]
    },
    "optional": true,
    "ojdisplayname": "Data",
    "ojshortdesc": "Specifies the DataProvider for the sections and items of the line-chart.",
    "description": "Specifies the DataProvider for the sections and items of the line-chart.\nA progressive loading indicator is shown by the component when the data provider fetch takes longer than a certain time.",
    "tstype": [
      {
        "target": "Type",
        "value": "DataProvider<K, D>|null",
        "jsdocOverride": true,
        "module": {
          "DataProvider": "ojdataprovider"
        }
      }
    ]
  },
  {
    "id": "oj-c.LineChart#selectionMode",
    "name": "selectionMode",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#selectionMode",
    "scope": "instance",
    "type": {
      "names": [
        "\"none\"",
        "\"multiple\"",
        "\"single\""
      ]
    },
    "optional": true,
    "ojdisplayname": "Selection Mode",
    "ojshortdesc": "Specifies the selection mode.",
    "description": "The type of selection behavior that is enabled on the line chart. This attribute controls the number of selections that can be made via selection gestures at any given time.",
    "ojvalues": [
      {
        "name": "none",
        "description": "No item can be selected.",
        "displayName": "None",
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "single",
        "description": "Single item can be selected.",
        "displayName": "Single",
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "multiple",
        "description": "Multiple items can be selected.",
        "displayName": "Multiple",
        "type": {
          "names": [
            "string"
          ]
        }
      }
    ],
    "ojvalueskeeporder": true,
    "defaultvalue": "'none'"
  },
  {
    "id": "oj-c.LineChart#selection",
    "name": "selection",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#selection",
    "scope": "instance",
    "type": {
      "names": [
        "Array<string|number>"
      ]
    },
    "optional": true,
    "ojdisplayname": "Selection",
    "ojwriteback": true,
    "description": "An array containing the ids of the initially selected data items.",
    "defaultvalue": "'[]'",
    "tstype": [
      {
        "target": "Type",
        "value": "Array<K>",
        "jsdocOverride": true
      }
    ]
  },
  {
    "id": "oj-c.LineChart#dragMode",
    "name": "dragMode",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#dragMode",
    "scope": "instance",
    "type": {
      "names": [
        "\"off\"",
        "\"pan\"",
        "\"zoom\"",
        "\"select\"",
        "\"user\""
      ]
    },
    "optional": true,
    "ojdisplayname": "Drag Mode",
    "ojshortdesc": "The action that is performed when a drag occurs on the chart.",
    "description": "The action that is performed when a drag occurs on the chart. Pan and marquee zoom are only available if zoom and scroll is turned on.\nMarquee select is only available if multiple selection is turned on. If the value is set to \"user\" and multiple actions are available,\nbuttons will be displayed on the plot area to let users switch between modes. Only 'select' and 'pan' buttons are shown in mobile, as\nzoom in or out can be performed with 2 finger pinch gesture."
  },
  {
    "id": "oj-c.LineChart#hiddenCategories",
    "name": "hiddenCategories",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#hiddenCategories",
    "scope": "instance",
    "type": {
      "names": [
        "Array<string>"
      ]
    },
    "optional": true,
    "ojdisplayname": "Hidden Categories",
    "ojwriteback": true,
    "ojshortdesc": "An array of category strings used for filtering.",
    "description": "An array of category strings used for filtering. Series or data items with any category matching an item in this array will be filtered.",
    "defaultvalue": "'[]'"
  },
  {
    "id": "oj-c.LineChart#highlightedCategories",
    "name": "highlightedCategories",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#highlightedCategories",
    "scope": "instance",
    "type": {
      "names": [
        "Array<string>"
      ]
    },
    "optional": true,
    "ojdisplayname": "Highlighted Categories",
    "ojwriteback": true,
    "ojshortdesc": "An array of category strings used for highlighting.",
    "description": "An array of category strings used for highlighting. Series or data items matching categories in this array will be highlighted.",
    "defaultvalue": "'[]'"
  },
  {
    "id": "oj-c.LineChart#hideAndShowBehavior",
    "name": "hideAndShowBehavior",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#hideAndShowBehavior",
    "scope": "instance",
    "type": {
      "names": [
        "\"none\"",
        "\"withoutRescale\"",
        "\"withRescale\""
      ]
    },
    "optional": true,
    "ojdisplayname": "Hide and Show Behavior",
    "ojshortdesc": "Defines the hide and show behavior that is performed when clicking on a leegnd item.",
    "description": "Defines the hide and show behavior that is performed when clicking on a legend item. When data items are hidden, the y axes can be optionally rescaled to fit to the remaining data.",
    "ojvalues": [
      {
        "name": "withRescale",
        "description": "Rescaling of y axis when items are hidden.",
        "displayName": "With Rescale",
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "withoutRescale",
        "description": "No rescaling of y axis when items are hidden.",
        "displayName": "Without Rescale",
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "none",
        "description": "No hide and show behavior.",
        "displayName": "None",
        "type": {
          "names": [
            "string"
          ]
        }
      }
    ],
    "ojvalueskeeporder": true,
    "defaultvalue": "'none'"
  },
  {
    "id": "oj-c.LineChart#hoverBehavior",
    "name": "hoverBehavior",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#hoverBehavior",
    "scope": "instance",
    "type": {
      "names": [
        "\"none\"",
        "\"dim\""
      ]
    },
    "optional": true,
    "ojdisplayname": "Hover Behavior",
    "description": "Defines the behavior applied when hovering over data items.",
    "ojvalues": [
      {
        "name": "dim",
        "description": "Hovered items will be dimmed.",
        "displayName": "Dim",
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "none",
        "description": "No hover behavior.",
        "displayName": "None",
        "type": {
          "names": [
            "string"
          ]
        }
      }
    ],
    "ojvalueskeeporder": true,
    "defaultvalue": "'none'"
  },
  {
    "id": "oj-c.LineChart#highlightMatch",
    "name": "highlightMatch",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#highlightMatch",
    "scope": "instance",
    "type": {
      "names": [
        "\"all\"",
        "\"any\""
      ]
    },
    "optional": true,
    "ojdisplayname": "Highlight Match",
    "ojshortdesc": "The matching condition for the highlighted property.",
    "description": "The matching condition for the highlightedCategories property.\nBy default, highlightMatch is 'all' and only items whose categories match all of the values specified in the highlightedCategories array will be highlighted.\nIf highlightMatch is 'any', then items that match at least one of the highlightedCategories values will be highlighted.",
    "ojvalues": [
      {
        "name": "any",
        "description": "Any matching categories will be highlighted.",
        "displayName": "Dim",
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "all",
        "description": "Items only with all matching categories will be highlighted.",
        "displayName": "None",
        "type": {
          "names": [
            "string"
          ]
        }
      }
    ],
    "ojvalueskeeporder": true,
    "defaultvalue": "'any'"
  },
  {
    "id": "oj-c.LineChart#legend",
    "name": "legend",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#legend",
    "scope": "instance",
    "type": {
      "names": [
        "object"
      ]
    },
    "optional": true,
    "ojdisplayname": "Legend",
    "description": "An object defining the style, positioning, and behavior of the legend.",
    "tstype": [
      {
        "target": "Type",
        "value": "oj-c.LineChart.ChartLegend",
        "jsdocOverride": true
      }
    ]
  },
  {
    "id": "oj-c.LineChart#contextMenuConfig",
    "name": "contextMenuConfig",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#contextMenuConfig",
    "scope": "instance",
    "type": {
      "names": [
        "object"
      ]
    },
    "optional": true,
    "ojdisplayname": "Context Menu Config",
    "ojshortdesc": "Specifies a context menu configuration.",
    "description": "Specifies a context menu configuration.\nIt takes the keys `accessibleLabel` and `items`,\nwhere `accessibleLabel` is optional and items required . `items` function returns an array\nof menu item object representations that indicates what menu items are going to be part of\nmenu based on some specific context menu context.\n<table>\n<tr><th align='left'>Context Menu Item Type</th><th align='left'>Def</th></tr>\n<tr><td>ContextMenuSeparator</td><td>{ type: 'separator'}</td></tr>\n<tr><td>MenuItem</td><td>{\ntype?: 'item';\nlabel: string;\nkey: string;\ndisabled?: boolean;\nonAction?: () => void;\nstartIcon?: MenuIcon;\nendIcon?: MenuIcon;\nvariant?: 'standard' | 'destructive';\n};</td></tr>\n<tr><td>ContextMenuSubMenu</td><td>{\ntype: 'submenu';\nlabel?: string;\ndisabled?: boolean;\nstartIcon?: string;\nitems?: Array&lt;ContextMenuItems&gt;;\n};</td></tr>\n<tr><td>ContextMenuSelectSingle</td><td>{\ntype: 'selectsingle';\nkey?: string;\nitems?: Array&lt;MenuSelectItem&gt;;\nselection?: string;\nonSelection?: (detail: { value: string }) => void;\n};</td></tr>\n<tr><td>ContextMenuSelectMultiple</td><td>{\ntype: 'selectmultiple';\nkey?: string;\nitems?: Array&lt;MenuSelectItem&gt;;\nselection?: Array&lt;string&gt;;\nonSelection?: (detail: { value: Array&lt;string&gt; }) => void;\n};</td></tr>\n<tr><td>MenuIcon</td><td>{\ntype?: 'class';\n    class: string;\n  }\n| {\n    type: 'img';\n   src: string;\n  };</td></tr>\n<tr><td>MenuSelectItem</td><td>{\nlabel: string;\ndisabled?: boolean;\nendIcon?: MenuIcon;\nvalue: string;\n}</td></tr>\n</table>",
    "tstype": [
      {
        "target": "Type",
        "value": "oj-c.LineChart.LineChartContextMenuConfig<K, D>",
        "jsdocOverride": true
      }
    ]
  },
  {
    "id": "oj-c.LineChart#datatipConfig",
    "name": "datatipConfig",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#datatipConfig",
    "scope": "instance",
    "type": {
      "names": [
        "function"
      ]
    },
    "optional": true,
    "description": "The DatatipConfig object is used to allow applications to control the appearance and behavior of the datatip.",
    "tstype": [
      {
        "target": "Type",
        "value": "(context: oj-c.LineChart.DatatipTemplateContext<K, D>) => oj-c.LineChart.DatatipConfig",
        "jsdocOverride": true
      }
    ]
  },
  {
    "id": "oj-c.LineChart#_getYAxis",
    "name": "_getYAxis",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "function",
    "longname": "oj-c.LineChart#_getYAxis",
    "scope": "instance",
    "returns": [
      {
        "type": {
          "names": [
            "object|undefined"
          ]
        }
      }
    ],
    "description": "Private method to expose y axis properties.",
    "ojhidden": true
  },
  {
    "id": "oj-c.LineChart#_getXAxis",
    "name": "_getXAxis",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "function",
    "longname": "oj-c.LineChart#_getXAxis",
    "scope": "instance",
    "returns": [
      {
        "type": {
          "names": [
            "object|undefined"
          ]
        }
      }
    ],
    "description": "Private method to expose x axis properties.",
    "ojhidden": true
  },
  {
    "id": "oj-c.LineChart#_getY2Axis",
    "name": "_getY2Axis",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "function",
    "longname": "oj-c.LineChart#_getY2Axis",
    "scope": "instance",
    "returns": [
      {
        "type": {
          "names": [
            "object|undefined"
          ]
        }
      }
    ],
    "description": "Private method to expose y2Axis properties.",
    "ojhidden": true
  },
  {
    "id": "oj-c.LineChart#setProperty",
    "name": "setProperty",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "function",
    "longname": "oj-c.LineChart#setProperty",
    "scope": "instance",
    "returns": [
      {
        "type": {
          "names": [
            "void"
          ]
        }
      }
    ],
    "ojshortdesc": "Sets a property or a single subproperty for complex properties and notifies the component of the change, triggering a corresponding event.",
    "description": "Sets a property or a single subproperty for complex properties and notifies the component of the change, triggering a corresponding event.",
    "params": [
      {
        "name": "property",
        "description": "The property name to set. Supports dot notation for subproperty access.",
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "value",
        "description": "The new value to set the property to.",
        "type": {
          "names": [
            "any"
          ]
        }
      }
    ]
  },
  {
    "id": "oj-c.LineChart#getProperty",
    "name": "getProperty",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "function",
    "longname": "oj-c.LineChart#getProperty",
    "scope": "instance",
    "returns": [
      {
        "type": {
          "names": [
            "any"
          ]
        }
      }
    ],
    "ojshortdesc": "Retrieves the value of a property or a subproperty.",
    "description": "Retrieves the value of a property or a subproperty.",
    "params": [
      {
        "name": "property",
        "description": "The property name to get. Supports dot notation for subproperty access.",
        "type": {
          "names": [
            "string"
          ]
        }
      }
    ]
  },
  {
    "id": "oj-c.LineChart#setProperties",
    "name": "setProperties",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "function",
    "longname": "oj-c.LineChart#setProperties",
    "scope": "instance",
    "returns": [
      {
        "type": {
          "names": [
            "void"
          ]
        }
      }
    ],
    "ojshortdesc": "Performs a batch set of properties.",
    "description": "Performs a batch set of properties.",
    "params": [
      {
        "name": "properties",
        "description": "An object containing the property and value pairs to set.",
        "type": {
          "names": [
            "object"
          ]
        }
      }
    ]
  },
  {
    "id": "oj-c.LineChart#event:ojItemDrill",
    "name": "ojItemDrill",
    "kind": "event",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart#event:ojItemDrill",
    "scope": "instance",
    "ojshortdesc": "Triggered on a chart item (double click if selection is enabled, single click otherwise).",
    "ojdisplayname": "Item Drill",
    "description": "<p style=\"background-color: RGB(var(--oj-palette-info-rgb-30)); border: 2px solid #ddd\"><strong>Note:</strong> The event detail contains the following properties: [oj-c.LineChart.ItemDrillDetail]{@link oj-c.LineChart.ItemDrillDetail}&lt;K, D></p>Triggered on a chart item (double click if selection is enabled, single click otherwise)."
  },
  {
    "id": "oj-c.LineChart#event:ojSeriesDrill",
    "name": "ojSeriesDrill",
    "kind": "event",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart#event:ojSeriesDrill",
    "scope": "instance",
    "ojshortdesc": "Triggered on a chart series drill gesture (double click if selection is enabled, single click otherwise).",
    "ojdisplayname": "Series Drill",
    "description": "<p style=\"background-color: RGB(var(--oj-palette-info-rgb-30)); border: 2px solid #ddd\"><strong>Note:</strong> The event detail contains the following properties: [oj-c.LineChart.SeriesDrillDetail]{@link oj-c.LineChart.SeriesDrillDetail}&lt;K></p>Triggered on a chart series drill gesture (double click if selection is enabled, single click otherwise)."
  },
  {
    "id": "oj-c.LineChart#event:ojGroupDrill",
    "name": "ojGroupDrill",
    "kind": "event",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart#event:ojGroupDrill",
    "scope": "instance",
    "ojshortdesc": "Triggered on a chart group drill gesture (double click if selection is enabled, single click otherwise).",
    "ojdisplayname": "Group Drill",
    "description": "<p style=\"background-color: RGB(var(--oj-palette-info-rgb-30)); border: 2px solid #ddd\"><strong>Note:</strong> The event detail contains the following properties: [oj-c.LineChart.GroupDrillDetail]{@link oj-c.LineChart.GroupDrillDetail}&lt;K></p>Triggered on a chart group drill gesture (double click if selection is enabled, single click otherwise)."
  },
  {
    "id": "oj-c.LineChart#event:ojViewportChange",
    "name": "ojViewportChange",
    "kind": "event",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart#event:ojViewportChange",
    "scope": "instance",
    "ojshortdesc": "Triggered after the viewport is changed due to a zoom or scroll operation.",
    "ojdisplayname": "Viewport Change",
    "description": "<p style=\"background-color: RGB(var(--oj-palette-info-rgb-30)); border: 2px solid #ddd\"><strong>Note:</strong> The event detail contains the following properties: [oj-c.LineChart.ViewPortDetail]{@link oj-c.LineChart.ViewPortDetail}</p>Triggered after the viewport is changed due to a zoom or scroll operation."
  },
  {
    "id": "oj-c.LineChart#event:ojContextMenuAction",
    "name": "ojContextMenuAction",
    "kind": "event",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart#event:ojContextMenuAction",
    "scope": "instance",
    "bubbles": true,
    "ojshortdesc": "Triggered when a menu item is clicked, whether by keyboard, mouse, or touch events.",
    "ojdisplayname": "onOjContextMenuAction",
    "description": "Triggered when a menu item is clicked, whether by keyboard, mouse, or touch events.",
    "properties": [
      {
        "name": "menuItemKey",
        "optional": false,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "contextMenuContext",
        "optional": false,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "{ type: 'background'; }|{ type: 'xAxisTickLabel'; data: oj-c.LineChart.Group; }|{ type: 'axisTitle'; axis: 'x' | 'y'; }|{ data?: oj-c.LineChart.LineItem<K>; itemData?: D; type: 'item'; }|{ type: 'series'; data: oj-c.LineChart.LineChartSeries<K>; }",
            "jsdocOverride": true,
            "for": "contextMenuContext"
          }
        ]
      }
    ]
  },
  {
    "id": "oj-c.LineChart#event:ojContextMenuSelection",
    "name": "ojContextMenuSelection",
    "kind": "event",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart#event:ojContextMenuSelection",
    "scope": "instance",
    "bubbles": true,
    "ojshortdesc": "Triggered when a select menu item is clicked, whether by keyboard, mouse, or touch events.",
    "ojdisplayname": "onOjContextMenuSelection",
    "description": "Triggered when a select menu item is clicked, whether by keyboard, mouse, or touch events.",
    "properties": [
      {
        "name": "value",
        "optional": false,
        "type": {
          "names": [
            "string|Array<string>"
          ]
        }
      },
      {
        "name": "contextMenuContext",
        "optional": false,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "{ type: 'background'; }|{ type: 'xAxisTickLabel'; data: oj-c.LineChart.Group; }|{ type: 'axisTitle'; axis: 'x' | 'y'; }|{ data?: oj-c.LineChart.LineItem<K>; itemData?: D; type: 'item'; }|{ type: 'series'; data: oj-c.LineChart.LineChartSeries<K>; }",
            "jsdocOverride": true,
            "for": "contextMenuContext"
          }
        ]
      },
      {
        "name": "menuSelectionGroupKey",
        "optional": false,
        "type": {
          "names": [
            "string"
          ]
        }
      }
    ]
  },
  {
    "id": "oj-c.LineChart#itemTemplate",
    "name": "itemTemplate",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#itemTemplate",
    "scope": "instance",
    "ojdisplayname": "itemTemplate",
    "description": "<p style=\"background-color: RGB(var(--oj-palette-info-rgb-30)); border: 2px solid #ddd\"><strong>Note:</strong> When the template is executed for each item, it will have access to the binding context containing the following properties: [oj-c.LineChart.ChartItemTemplateContext]{@link oj-c.LineChart.ChartItemTemplateContext}</p><p>The <code class=\"prettyprint\">itemTemplate</code> slot is used to specify the template for creating each item of the chart. The slot content must be a &lt;template> element.\nThe content of the template should only be one &lt;oj-c-line-chart-item> element. See the <a target=\"_blank\" href=\"oj-c.LineChartItem.html\">oj-c-line-chart-item</a> doc for more details. A <b>series-id</b> and <b>group-id</b> must be specified.</p>\n<p>When the template is executed for each item, it will have access to the chart's binding context containing the following properties:</p>\n<ul>\n  <li>$current - an object that contains information for the current item. (See the table below for a list of properties available on $current) </li>\n  <li>alias - if data-oj-as attribute was specified, the value will be used to provide an application-named alias for $current.</li>\n</ul>",
    "ojshortdesc": "The itemTemplate slot is used to specify the template for creating each item of the chart. See the Help documentation for more information.",
    "ojslot": true,
    "ojtemplateslotprops": "oj-c.LineChart.ChartItemTemplateContext"
  },
  {
    "id": "oj-c.LineChart#seriesTemplate",
    "name": "seriesTemplate",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#seriesTemplate",
    "scope": "instance",
    "ojdisplayname": "seriesTemplate",
    "description": "<p style=\"background-color: RGB(var(--oj-palette-info-rgb-30)); border: 2px solid #ddd\"><strong>Note:</strong> When the template is executed for each item, it will have access to the binding context containing the following properties: [oj-c.LineChart.ChartSeriesTemplateContext]{@link oj-c.LineChart.ChartSeriesTemplateContext}</p><p>The <code class=\"prettyprint\">seriesTemplate</code> slot is used to specify the template for generating the series properties of the chart. The slot content must be a single &lt;template> element.\nThe content of the template should only be one &lt;oj-c-line-chart-series> element.See the <a target=\"_blank\" href=\"oj-c.LineChartSeries.html\">oj-c-line-chart-series</a> doc for more details.</p>\n<p>When the template is executed for each series, it will have access to the chart's binding context containing the following properties:</p>\n<ul>\n  <li>$current - an object that contains information for the current item. (See the table below for a list of properties available on $current) </li>\n  <li>alias - if data-oj-as attribute was specified, the value will be used to provide an application-named alias for $current.</li>\n</ul>",
    "ojshortdesc": "The seriesTemplate slot is used to specify the template for generating the series properties of the chart. See the Help documentation for more information.",
    "ojslot": true,
    "ojtemplateslotprops": "oj-c.LineChart.ChartSeriesTemplateContext"
  },
  {
    "id": "oj-c.LineChart#groupTemplate",
    "name": "groupTemplate",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#groupTemplate",
    "scope": "instance",
    "ojdisplayname": "groupTemplate",
    "description": "<p style=\"background-color: RGB(var(--oj-palette-info-rgb-30)); border: 2px solid #ddd\"><strong>Note:</strong> When the template is executed for each item, it will have access to the binding context containing the following properties: [oj-c.LineChart.ChartGroupTemplateContext]{@link oj-c.LineChart.ChartGroupTemplateContext}</p><p>The <code class=\"prettyprint\">groupTemplate</code> slot is used to specify the template for generating the group properties of the chart. The slot content must be a single &lt;template> element.\nThe content of the template should only be one &lt;oj-c-line-chart-group> element. See the <a target=\"_blank\" href=\"oj-c.LineChartGroup.html\">oj-c-line-chart-group</a> doc for more details.</p>\n<p>When the template is executed for each group, it will have access to the chart's binding context containing the following properties:</p>\n<ul>\n  <li>$current - an object that contains information for the current item. (See the table below for a list of properties available on $current) </li>\n  <li>alias - if data-oj-as attribute was specified, the value will be used to provide an application-named alias for $current.</li>\n</ul>",
    "ojshortdesc": "The groupTemplate slot is used to specify the template for generating the group properties of the chart. See the Help documentation for more information.",
    "ojslot": true,
    "ojtemplateslotprops": "oj-c.LineChart.ChartGroupTemplateContext"
  },
  {
    "id": "oj-c.LineChart#datatipTemplate",
    "name": "datatipTemplate",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "kind": "member",
    "longname": "oj-c.LineChart#datatipTemplate",
    "scope": "instance",
    "description": "<p style=\"background-color: RGB(var(--oj-palette-info-rgb-30)); border: 2px solid #ddd\"><strong>Note:</strong> When the template is executed for each item, it will have access to the binding context containing the following properties: [oj-c.LineChart.DatatipTemplateContext]{@link oj-c.LineChart.DatatipTemplateContext}</p>The datatipTemplate slot is used to specify custom datatip content.",
    "ojslot": true,
    "ojtemplateslotprops": "oj-c.LineChart.DatatipTemplateContext"
  },
  {
    "id": "oj-c.LineChart.touchDoc",
    "name": "touchDoc",
    "kind": "member",
    "longname": "oj-c.LineChart.touchDoc",
    "description": "<table class=\"keyboard-table\">\n  <thead>\n    <tr>\n      <th>Target</th>\n      <th>Gesture</th>\n      <th>Action</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr>\n      <td rowspan=\"5\">Data Item</td>\n      <td rowspan=\"2\"><kbd>Tap</kbd></td>\n      <td>Select when <code class=\"prettyprint\">selectionMode</code> is enabled.</td>\n    </tr>\n    <tr>\n      <td>Drill when <code class=\"prettyprint\">drilling</code> is enabled and <code class=\"prettyprint\">selectionMode</code> is <code class=\"prettyprint\">none</code>.</td>\n    </tr>\n    <tr>\n      <td><kbd>Double Tap</kbd></td>\n      <td>Drill when <code class=\"prettyprint\">drilling</code> is enabled and <code class=\"prettyprint\">selectionMode</code> is enabled.</td>\n    </tr>\n    <tr>\n      <td rowspan=\"2\"><kbd>Press & Hold</kbd></td>\n      <td>Display datatip.</td>\n    </tr>\n    <tr>\n      <td>Display context menu on release.</td>\n    </tr>\n    <tr>\n      <td rowspan=\"2\">Categorical Axis Item</td>\n      <td><kbd>Tap</kbd></td>\n      <td>Drill when <code class=\"prettyprint\">drilling</code> is enabled.</td>\n    </tr>\n    <tr>\n       <td><kbd>Press & Hold</kbd></td>\n       <td>Display context menu on release.</td>\n    </tr>\n    <tr>\n      <td rowspan=\"2\">Legend Item</td>\n      <td rowspan=\"2\"><kbd>Tap</kbd></td>\n      <td>Drill when <code class=\"prettyprint\">drilling</code> is enabled.</td>\n    </tr>\n    <tr>\n      <td>Filter when <code class=\"prettyprint\">hideAndShowBehavior</code> is enabled.</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\">Plot Area</td>\n      <td rowspan=\"2\"><kbd>Drag</kbd></td>\n      <td>Pan when panning is enabled and toggled into that mode.</td>\n    </tr>\n    <tr>\n      <td>Marquee select when <code class=\"prettyprint\">selectionMode</code> is <code class=\"prettyprint\">multiple</code> and toggled into that mode.</td>\n    </tr>\n    <tr>\n      <td><kbd>Pinch-close</kbd></td>\n      <td>Zoom out when zooming is enabled.</td>\n    </tr>\n    <tr>\n      <td><kbd>Spread-open</kbd></td>\n      <td>Zoom in when zooming is enabled.</td>\n    </tr>\n    <tr>\n       <td><kbd>Press & Hold</kbd></td>\n       <td>Display context menu on release.</td>\n    </tr>\n    <tr>\n       <td>Series Line</td>\n       <td><kbd>Press & Hold</kbd></td>\n       <td>Display context menu on release.</td>\n    </tr>\n    <tr>\n       <td>Axis Title</td>\n       <td><kbd>Press & Hold</kbd></td>\n       <td>Display context menu on release.</td>\n    </tr>\n  </tbody>\n</table>",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "ojfragment": true
  },
  {
    "id": "oj-c.LineChart.keyboardDoc",
    "name": "keyboardDoc",
    "kind": "member",
    "longname": "oj-c.LineChart.keyboardDoc",
    "description": "<table class=\"keyboard-table\">\n  <thead>\n    <tr>\n      <th>Key</th>\n      <th>Action</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr>\n      <td><kbd>Tab</kbd></td>\n      <td>Move focus to next element.</td>\n    </tr>\n    <tr>\n      <td><kbd>Shift + Tab</kbd></td>\n      <td>Move focus to previous element.</td>\n    </tr>\n    <tr>\n      <td><kbd>UpArrow</kbd></td>\n      <td>Move focus and selection to previous data item.</td>\n    </tr>\n    <tr>\n      <td><kbd>DownArrow</kbd></td>\n      <td>Move focus and selection to next data item.</td>\n    </tr>\n    <tr>\n      <td><kbd>LeftArrow</kbd></td>\n      <td>Move focus and selection to previous data item.</td>\n    </tr>\n    <tr>\n      <td><kbd>RightArrow</kbd></td>\n      <td>Move focus and selection to next data item.</td>\n    </tr>\n    <tr>\n      <td><kbd>Shift + UpArrow</kbd></td>\n      <td>Move focus and multi-select previous data item.</td>\n    </tr>\n    <tr>\n      <td><kbd>Shift + DownArrow</kbd></td>\n      <td>Move focus and multi-select next data item.</td>\n    </tr>\n    <tr>\n      <td><kbd>Shift + LeftArrow</kbd></td>\n      <td>Move focus and multi-select previous data item.</td>\n    </tr>\n    <tr>\n      <td><kbd>Shift + RightArrow</kbd></td>\n      <td>Move focus and multi-select next data item.</td>\n    </tr>\n    <tr>\n      <td><kbd>Ctrl + UpArrow</kbd></td>\n      <td>Move focus to previous data item, without changing the current selection.</td>\n    </tr>\n    <tr>\n      <td><kbd>Ctrl + DownArrow</kbd></td>\n      <td>Move focus to next data item, without changing the current selection.</td>\n    </tr>\n    <tr>\n      <td><kbd>Ctrl + LeftArrow</kbd></td>\n      <td>Move focus to previous data item, without changing the current selection.</td>\n    </tr>\n    <tr>\n      <td><kbd>Ctrl + RightArrow</kbd></td>\n      <td>Move focus to next data item, without changing the current selection.</td>\n    </tr>\n    <tr>\n      <td><kbd>Ctrl + Spacebar</kbd></td>\n      <td>Multi-select data item with focus.</td>\n    </tr>\n    <tr>\n      <td><kbd>= or +</kbd></td>\n      <td>Zoom in one level if zooming is enabled.</td>\n    </tr>\n    <tr>\n      <td><kbd>- or _</kbd></td>\n      <td>Zoom out one level if zooming is enabled.</td>\n    </tr>\n     <tr>\n      <td><kbd>PageUp or Shift + PageUp</kbd></td>\n      <td>Pan left in left-to-right locales. Pan right in right-to-left locales.</td>\n    </tr>\n    <tr>\n      <td><kbd>PageDown or Shift + PageDown</kbd></td>\n      <td>Pan right in left-to-right locales. Pan left in right-to-left locales.</td>\n    </tr>\n    <tr>\n      <td><kbd>Enter</kbd></td>\n      <td>Drill on data item, categorical axis label, or legend item when <code class=\"prettyprint\">drilling</code> is enabled.</td>\n    </tr>\n    <tr>\n      <td><kbd>Shift+F10</kbd></td>\n      <td>Launch the context menu if there is one associated with the current item.</td>\n    </tr>\n  </tbody>\n</table>",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "ojfragment": true
  },
  {
    "id": "oj-c.LineChart.LineItem",
    "name": "LineItem",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.LineItem",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "tsgenerictype": {
      "target": "Type",
      "value": "<K>",
      "for": "genericTypeParameters"
    },
    "properties": [
      {
        "name": "id",
        "description": "The item id should be set by the application if the DataProvider is not being used. The row key will be used as id in the DataProvider case.",
        "optional": false,
        "type": {
          "names": [
            "string|number"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "K",
            "jsdocOverride": true,
            "for": "id"
          }
        ]
      },
      {
        "name": "seriesId",
        "description": "The id for the series the item belongs to.",
        "optional": false,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "groupId",
        "description": "The array of ids for the groups the item belongs to. For hierarchical groups, it will be an array of outermost to innermost group ids. This is also used to specify the date for non mixed frequency time axes. The specified date for non mixed frequency time axes must be an ISO string.",
        "optional": false,
        "type": {
          "names": [
            "Array<string>"
          ]
        },
        "ojshortdesc": "The array of ids for the groups the item belongs to"
      },
      {
        "name": "value",
        "description": "The value for this data item. Null can be specified to skip a data point.",
        "optional": false,
        "type": {
          "names": [
            "number"
          ]
        },
        "ojshortdesc": "The value of the data item."
      },
      {
        "name": "x",
        "description": "The x value. Mainly used to specify the date for mixed-frequency time axis. The date specified in the x value must be an ISO date string.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        },
        "ojshortdesc": "The x value of the data item."
      },
      {
        "name": "color",
        "description": "The color of the data item. This color value is not inherited by chart legend. See chart <a href=\"oj.ojChartSeries.html#color\">series color</a> and <a href=\"oj.ojChartSeries.html#displayInLegend\">display-in-legend</a> for more details.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        },
        "ojshortdesc": "The color of the data item."
      },
      {
        "name": "markerDisplayed",
        "description": "Defines whether the data marker is displayed. If auto, the markers will be displayed whenever the data points are not connected by a line.",
        "optional": true,
        "type": {
          "names": [
            "\"auto\"",
            "\"off\"",
            "\"on\""
          ]
        },
        "ojshortdesc": "Defines whether the data marker is displayed."
      },
      {
        "name": "markerShape",
        "description": "The shape of the data markers. In addition to the built-in shapes, it may also take SVG path commands to specify a custom shape. The chart will style the custom shapes the same way as built-in shapes, supporting properties like color and borderColor and applying hover and selection effects. Only 'auto' is supported for range series.",
        "optional": true,
        "type": {
          "names": [
            "\"auto\"",
            "\"square\"",
            "\"circle\"",
            "\"diamond\"",
            "\"human\"",
            "\"plus\"",
            "\"star\"",
            "\"triangleDown\"",
            "\"triangleUp\""
          ]
        },
        "ojshortdesc": "The shape of the data markers."
      },
      {
        "name": "markerSize",
        "description": "The size of the data markers.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        }
      },
      {
        "name": "categories",
        "description": "An optional array of category strings corresponding to this data item. This enables highlighting and filtering of individual data items through interactions with the legend or other visualization elements. If not defined, series categories are used.",
        "optional": true,
        "type": {
          "names": [
            "Array<string>"
          ]
        },
        "ojshortdesc": "An optional array of category strings corresponding to this data item."
      },
      {
        "name": "drilling",
        "description": "Whether drilling is enabled for the data item. Drillable objects will show a pointer cursor on hover and fire an <code class=\"prettyprint\">ojDrill</code> event on click (double click if selection is enabled). To enable drilling for all data items at once, use the drilling attribute in the top level.",
        "optional": true,
        "type": {
          "names": [
            "\"off\"",
            "\"inherit\"",
            "\"on\""
          ]
        },
        "ojshortdesc": "Whether drilling is enabled for the data item."
      },
      {
        "name": "shortDesc",
        "description": "The description of this object. This is used for accessibility and also for customizing the datatip text.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        },
        "ojshortdesc": "The description of this object."
      },
      {
        "name": "label",
        "description": "The label for the data item.",
        "optional": true,
        "type": {
          "names": [
            "string|Array<string>"
          ]
        }
      }
    ]
  },
  {
    "id": "oj-c.LineChart.ChartItemTemplateContext",
    "name": "ChartItemTemplateContext",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.ChartItemTemplateContext",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "tsgenerictype": {
      "target": "Type",
      "value": "<K,D>",
      "for": "genericTypeParameters"
    },
    "properties": [
      {
        "name": "data",
        "description": "The data object of the current item.",
        "optional": false,
        "type": {
          "names": [
            "any"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "D",
            "jsdocOverride": true,
            "for": "data"
          }
        ]
      },
      {
        "name": "key",
        "description": "The key of the current item.",
        "optional": false,
        "type": {
          "names": [
            "any"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "K",
            "jsdocOverride": true,
            "for": "key"
          }
        ]
      },
      {
        "name": "index",
        "description": "The zero-based index of the current item.",
        "optional": false,
        "type": {
          "names": [
            "number"
          ]
        }
      }
    ]
  },
  {
    "id": "oj-c.LineChart.ChartGroupTemplateContext",
    "name": "ChartGroupTemplateContext",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.ChartGroupTemplateContext",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "tsgenerictype": {
      "target": "Type",
      "value": "<K,D>",
      "for": "genericTypeParameters"
    },
    "properties": [
      {
        "name": "items",
        "description": "The array of objects which are chart items that belong to this series. The objects will have the following properties",
        "optional": false,
        "type": {
          "names": [
            "Array<object>"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "Array<oj-c.LineChart.ChartItemTemplateContext<K, D>>",
            "jsdocOverride": true,
            "for": "items"
          }
        ]
      },
      {
        "name": "ids",
        "description": "The key of the current item.",
        "optional": false,
        "type": {
          "names": [
            "Array<string>"
          ]
        }
      },
      {
        "name": "index",
        "description": "The group index",
        "optional": false,
        "type": {
          "names": [
            "number"
          ]
        }
      },
      {
        "name": "depth",
        "description": "The depth of the group. The depth of the outermost group under the invisible root is 1.",
        "optional": false,
        "type": {
          "names": [
            "number"
          ]
        }
      }
    ]
  },
  {
    "id": "oj-c.LineChart.ChartSeriesTemplateContext",
    "name": "ChartSeriesTemplateContext",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.ChartSeriesTemplateContext",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "tsgenerictype": {
      "target": "Type",
      "value": "<K,D>",
      "for": "genericTypeParameters"
    },
    "properties": [
      {
        "name": "items",
        "description": "The array of objects which are chart items that belong to this series. The objects will have the following properties",
        "optional": false,
        "type": {
          "names": [
            "Array<object>"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "Array<oj-c.LineChart.ChartItemTemplateContext<K, D>>",
            "jsdocOverride": true,
            "for": "items"
          }
        ]
      },
      {
        "name": "id",
        "description": "The series id",
        "optional": false,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "index",
        "description": "The series index",
        "optional": false,
        "type": {
          "names": [
            "number"
          ]
        }
      }
    ]
  },
  {
    "id": "oj-c.LineChart.MajorTick",
    "name": "MajorTick",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.MajorTick",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "properties": [
      {
        "name": "lineColor",
        "description": "The color of the line.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "lineStyle",
        "description": "The style of the line.",
        "optional": true,
        "type": {
          "names": [
            "\"dashed\"",
            "\"solid\"",
            "\"dotted\""
          ]
        },
        "ojvalues": [
          {
            "name": "dashed",
            "description": "Renders dashed major tick.",
            "displayName": "Dashed",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "dotted",
            "description": "Renders dotted major tick.",
            "displayName": "Dotted",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "solid",
            "description": "Renders solid major tick.",
            "displayName": "Solid",
            "type": {
              "names": [
                "string"
              ]
            }
          }
        ],
        "ojvalueskeeporder": true
      },
      {
        "name": "lineWidth",
        "description": "The width of the line.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        }
      },
      {
        "name": "rendered",
        "description": "Whether the tick is rendered or not.",
        "optional": false,
        "type": {
          "names": [
            "\"auto\"",
            "\"off\"",
            "\"on\""
          ]
        },
        "ojvalues": [
          {
            "name": "off",
            "description": "Renders the minor tick.",
            "displayName": "Off",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "on",
            "description": "Does not render the minor tick.",
            "displayName": "On",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "auto",
            "description": "Renders the minor tick for log scale.",
            "displayName": "Auto",
            "type": {
              "names": [
                "string"
              ]
            }
          }
        ],
        "ojvalueskeeporder": true,
        "ojshortdesc": "The color of the line."
      }
    ]
  },
  {
    "id": "oj-c.LineChart.MinorTick",
    "name": "MinorTick",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.MinorTick",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "properties": [
      {
        "name": "lineColor",
        "description": "The color of the line.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "lineStyle",
        "description": "The style of the line.",
        "optional": true,
        "type": {
          "names": [
            "\"dashed\"",
            "\"solid\"",
            "\"dotted\""
          ]
        },
        "ojvalues": [
          {
            "name": "dashed",
            "description": "Renders dashed major tick.",
            "displayName": "Dashed",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "dotted",
            "description": "Renders dotted major tick.",
            "displayName": "Dotted",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "solid",
            "description": "Renders solid major tick.",
            "displayName": "Solid",
            "type": {
              "names": [
                "string"
              ]
            }
          }
        ],
        "ojvalueskeeporder": true
      },
      {
        "name": "lineWidth",
        "description": "The width of the line.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        }
      },
      {
        "name": "rendered",
        "description": "Whether the tick is rendered.",
        "optional": false,
        "type": {
          "names": [
            "\"auto\"",
            "\"off\"",
            "\"on\""
          ]
        },
        "ojvalues": [
          {
            "name": "off",
            "description": "Renders the minor tick.",
            "displayName": "Off",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "on",
            "description": "Does not render the minor tick.",
            "displayName": "On",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "auto",
            "description": "Renders the minor tick for log scale.",
            "displayName": "Auto",
            "type": {
              "names": [
                "string"
              ]
            }
          }
        ],
        "ojvalueskeeporder": true,
        "ojshortdesc": "Whether the minor tick are rendered."
      }
    ]
  },
  {
    "id": "oj-c.LineChart.YAxisTickLabel",
    "name": "YAxisTickLabel",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.YAxisTickLabel",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "properties": [
      {
        "name": "converter",
        "description": "The converter used to format the tick label of the axis.",
        "optional": true,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "Converter<number>",
            "jsdocOverride": true,
            "for": "converter",
            "module": {
              "Converter": "ojconverter"
            }
          }
        ]
      },
      {
        "name": "rendered",
        "description": "Whether the tick labels are rendered or not.",
        "optional": true,
        "type": {
          "names": [
            "\"off\"",
            "\"on\""
          ]
        },
        "ojvalues": [
          {
            "name": "on",
            "description": "Renders the axis tick label.",
            "displayName": "On",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "off",
            "description": "Axis tick labels won't be rendered.",
            "displayName": "Off",
            "type": {
              "names": [
                "string"
              ]
            }
          }
        ],
        "ojvalueskeeporder": true
      },
      {
        "name": "style",
        "description": "The object defining the style of the labels. The following style properties are supported: color, cursor, fontFamily, fontSize, fontStyle, fontWeight, textDecoration.",
        "optional": true,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "Partial<CSSStyleDeclaration>",
            "jsdocOverride": true,
            "for": "style"
          }
        ],
        "ojshortdesc": "The style of the tick labels."
      }
    ]
  },
  {
    "id": "oj-c.LineChart.YAxis",
    "name": "YAxis",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.YAxis",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "properties": [
      {
        "name": "dataMax",
        "description": "The maximum data value corresponding to an axis. If specified, the automatic axis extent calculation will use this value.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        },
        "ojshortdesc": "The maximum value of the chart data."
      },
      {
        "name": "dataMin",
        "description": "The minimum data value corresponding to an axis. If specified, the automatic axis extent calculation will use this value.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        },
        "ojshortdesc": "The minimum value of the chart data."
      },
      {
        "name": "max",
        "description": "The maximum value of the axis. Defaults to null for automatic calculation based on the data.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        },
        "ojshortdesc": "The maximum value of the y axis."
      },
      {
        "name": "min",
        "description": "The minumum value of the axis. Defaults to null for automatic calculation based on the data.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        },
        "ojshortdesc": "The minimum value of the y axis."
      },
      {
        "name": "majorTick",
        "description": "The object defining the properties of the major tick of the y axis.",
        "optional": true,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "oj-c.LineChart.MajorTick",
            "jsdocOverride": true,
            "for": "majorTick"
          }
        ]
      },
      {
        "name": "minorTick",
        "description": "The object defining the properties of the minor tick of the y axis.",
        "optional": true,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "oj-c.LineChart.MinorTick",
            "jsdocOverride": true,
            "for": "minorTick"
          }
        ]
      },
      {
        "name": "tickLabel",
        "description": "The object defining the properties of tick labels of the y axis.",
        "optional": true,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "oj-c.LineChart.YAxisTickLabel",
            "jsdocOverride": true,
            "for": "tickLabel"
          }
        ]
      },
      {
        "name": "viewportMin",
        "description": "Specifies the minimum y coordinate of the current viewport for zoom and scroll.\nIf not specified, this value will be the axis min.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        },
        "ojshortdesc": "The current minimum value of y axis viewport."
      },
      {
        "name": "viewportMax",
        "description": "Specifies the maximum y coordinate of the current viewport for zoom and scroll.\nIf not specified, this value will be the axis max.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        },
        "ojshortdesc": "The current maximum value of y axis viewport."
      },
      {
        "name": "step",
        "description": "The increment between major tick marks in y axis. Defaults to null for automatic calculation based on the data.\nFor log axis, the step is a multiplier, for example, if the step is 2, the major tick marks will be rendered at 1, 2, 4, 8, and so on.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        },
        "ojshortdesc": "The increment between major tick marks in y axis."
      },
      {
        "name": "size",
        "description": "Specifies the size of the axis as a ratio from 0 to 1, based on the width (for horizontal) or height (for vertical) of the chart.\nThis value determines the proportion of space allocated to the axis. The chart will arrange axis elements within this space.\nIf all elements cannot fit, some may be omitted. When the axis title and tick labels do not fit within the available space,\nthe tick labels will be dropped first, followed by the axis title.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        },
        "ojshortdesc": "The size of the axis."
      },
      {
        "name": "maxSize",
        "description": "Specifies the maximum size of the axis as a ratio from 0 to 1: axis width divided by chart width (for horizontal axes) or axis height divided by chart height (for vertical axes).\nWhen the axis title and tick labels do not fit within the available space, the tick labels will be dropped first, followed by the axis title.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        },
        "ojshortdesc": "The maximum size of the axis."
      },
      {
        "name": "scale",
        "description": "Defines the axis scale. If set to log, major ticks will rendered will be incremented in logarithmic ratio.",
        "optional": true,
        "type": {
          "names": [
            "\"linear\"",
            "\"log\""
          ]
        },
        "ojvalues": [
          {
            "name": "linear",
            "description": "Renders linear y axis.",
            "displayName": "Linear",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "log",
            "description": "Renders log y axis.",
            "displayName": "Log",
            "type": {
              "names": [
                "string"
              ]
            }
          }
        ],
        "ojvalueskeeporder": true,
        "ojshortdesc": "The scale of the axis."
      },
      {
        "name": "title",
        "description": "The title of the axis.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        },
        "ojshortdesc": "The axis title."
      },
      {
        "name": "titleStyle",
        "description": "The object defining the css properties of the axis title.\nThe following style properties are supported: color, cursor, fontFamily, fontSize, fontStyle, fontWeight, textDecoration.",
        "optional": true,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "Partial<CSSStyleDeclaration>",
            "jsdocOverride": true,
            "for": "titleStyle"
          }
        ],
        "ojshortdesc": "The axis title style."
      }
    ]
  },
  {
    "id": "oj-c.LineChart.Y2Axis",
    "name": "Y2Axis",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.Y2Axis",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "properties": [
      {
        "name": "dataMax",
        "description": "The maximum data value corresponding to an axis. If specified, the automatic axis extent calculation will use this value.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        },
        "ojshortdesc": "The maximum value of the chart data."
      },
      {
        "name": "dataMin",
        "description": "The minimum data value corresponding to an axis. If specified, the automatic axis extent calculation will use this value.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        },
        "ojshortdesc": "The minimum value of the chart data."
      },
      {
        "name": "max",
        "description": "The maximum value of the axis. Defaults to null for automatic calculation based on the data.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        },
        "ojshortdesc": "The maximum value of the y axis."
      },
      {
        "name": "min",
        "description": "The minumum value of the axis. Defaults to null for automatic calculation based on the data.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        },
        "ojshortdesc": "The minimum value of the y axis."
      },
      {
        "name": "majorTick",
        "description": "The object defining the properties of the major tick of the y axis.",
        "optional": true,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "oj-c.LineChart.MajorTick",
            "jsdocOverride": true,
            "for": "majorTick"
          }
        ]
      },
      {
        "name": "minorTick",
        "description": "The object defining the properties of the minor tick of the y axis.",
        "optional": true,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "oj-c.LineChart.MinorTick",
            "jsdocOverride": true,
            "for": "minorTick"
          }
        ]
      },
      {
        "name": "tickLabel",
        "description": "The object defining the properties of tick labels of the y axis.",
        "optional": true,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "oj-c.LineChart.YAxisTickLabel",
            "jsdocOverride": true,
            "for": "tickLabel"
          }
        ]
      },
      {
        "name": "viewportMin",
        "description": "Specifies the minimum y coordinate of the current viewport for zoom and scroll.\nIf not specified, this value will be the axis min.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        },
        "ojshortdesc": "The current minimum value of y axis viewport."
      },
      {
        "name": "viewportMax",
        "description": "Specifies the maximum y coordinate of the current viewport for zoom and scroll.\nIf not specified, this value will be the axis max.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        },
        "ojshortdesc": "The current maximum value of y axis viewport."
      },
      {
        "name": "step",
        "description": "The increment between major tick marks in y axis. Defaults to null for automatic calculation based on the data.\nFor log axis, the step is a multiplier, for example, if the step is 2, the major tick marks will be rendered at 1, 2, 4, 8, and so on.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        },
        "ojshortdesc": "The increment between major tick marks in y axis."
      },
      {
        "name": "size",
        "description": "Specifies the size of the axis as a ratio from 0 to 1, based on the width (for horizontal) or height (for vertical) of the chart.\nThis value determines the proportion of space allocated to the axis. The chart will arrange axis elements within this space.\nIf all elements cannot fit, some may be omitted. When the axis title and tick labels do not fit within the available space,\nthe tick labels will be dropped first, followed by the axis title.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        },
        "ojshortdesc": "The size of the axis."
      },
      {
        "name": "maxSize",
        "description": "Specifies the maximum size of the axis as a ratio from 0 to 1: axis width divided by chart width (for horizontal axes) or axis height divided by chart height (for vertical axes).\nWhen the axis title and tick labels do not fit within the available space, the tick labels will be dropped first, followed by the axis title.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        },
        "ojshortdesc": "The maximum size of the axis."
      },
      {
        "name": "scale",
        "description": "Defines the axis scale. If set to log, major ticks will rendered will be incremented in logarithmic ratio.",
        "optional": true,
        "type": {
          "names": [
            "\"linear\"",
            "\"log\""
          ]
        },
        "ojvalues": [
          {
            "name": "linear",
            "description": "Renders linear y axis.",
            "displayName": "Linear",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "log",
            "description": "Renders log y axis.",
            "displayName": "Log",
            "type": {
              "names": [
                "string"
              ]
            }
          }
        ],
        "ojvalueskeeporder": true,
        "ojshortdesc": "The scale of the axis."
      },
      {
        "name": "title",
        "description": "The title of the axis.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        },
        "ojshortdesc": "The axis title."
      },
      {
        "name": "titleStyle",
        "description": "The object defining the css properties of the axis title.\nThe following style properties are supported: color, cursor, fontFamily, fontSize, fontStyle, fontWeight, textDecoration.",
        "optional": true,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "Partial<CSSStyleDeclaration>",
            "jsdocOverride": true,
            "for": "titleStyle"
          }
        ],
        "ojshortdesc": "The axis title style."
      }
    ]
  },
  {
    "id": "oj-c.LineChart.XAxisTickLabel",
    "name": "XAxisTickLabel",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.XAxisTickLabel",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "properties": [
      {
        "name": "converter",
        "description": "The converter used to format the tick label of the axis. When using a time axis, this attribute also takes an array of two converters, which apply respectively to the first and second label levels.",
        "optional": true,
        "type": {
          "names": [
            "object|Array<object>"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "Converter<string>|[Converter<string>,Converter<string>]",
            "jsdocOverride": true,
            "for": "converter",
            "module": {
              "Converter": "ojconverter"
            }
          }
        ]
      },
      {
        "name": "rendered",
        "description": "Whether the tick labels are rendered or not.",
        "optional": true,
        "type": {
          "names": [
            "\"off\"",
            "\"on\""
          ]
        },
        "ojvalues": [
          {
            "name": "on",
            "description": "Renders the axis tick label.",
            "displayName": "On",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "off",
            "description": "Axis tick labels won't be rendered.",
            "displayName": "Off",
            "type": {
              "names": [
                "string"
              ]
            }
          }
        ],
        "ojvalueskeeporder": true
      },
      {
        "name": "rotation",
        "description": "Defines whether the chart will automatically rotate the labels by 90 degrees in order to fit more labels on the axis.\nThe rotation will only be applied to categorical labels for a horizontal axis.",
        "optional": true,
        "type": {
          "names": [
            "\"auto\"",
            "\"none\""
          ]
        },
        "ojvalues": [
          {
            "name": "none",
            "description": "The axis labels will not be rotated.",
            "displayName": "On",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "off",
            "description": "The axis labels might be rotated in order to fit more labels.",
            "displayName": "auto",
            "type": {
              "names": [
                "string"
              ]
            }
          }
        ],
        "ojvalueskeeporder": true,
        "ojshortdesc": "Whether the ticklabels can be rotated."
      },
      {
        "name": "style",
        "description": "The object defining the style of the labels. The following style properties are supported: color, cursor, fontFamily, fontSize, fontStyle, fontWeight, textDecoration, whiteSpace.\nThe CSS white-space property can be defined with value \"nowrap\" to disable default text wrapping of categorical labels",
        "optional": true,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "Partial<CSSStyleDeclaration>",
            "jsdocOverride": true,
            "for": "style"
          }
        ],
        "ojshortdesc": "The style of the tick labels."
      }
    ]
  },
  {
    "id": "oj-c.LineChart.XAxis",
    "name": "XAxis",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.XAxis",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "properties": [
      {
        "name": "majorTick",
        "description": "The object defining the properties of the major tick of the x axis.",
        "optional": true,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "oj-c.LineChart.MajorTick",
            "jsdocOverride": true,
            "for": "majorTick"
          }
        ]
      },
      {
        "name": "minorTick",
        "description": "The object defining the properties of the minor tick of the x axis.",
        "optional": true,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "oj-c.LineChart.MinorTick",
            "jsdocOverride": true,
            "for": "minorTick"
          }
        ]
      },
      {
        "name": "tickLabel",
        "description": "The object defining the properties of tick labels of the x axis.",
        "optional": true,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "oj-c.LineChart.XAxisTickLabel",
            "jsdocOverride": true,
            "for": "tickLabel"
          }
        ]
      },
      {
        "name": "viewportMin",
        "description": "Specifies the minimum y coordinate of the current viewport for zoom and scroll.\nIf not specified, this value will be the axis min.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        },
        "ojshortdesc": "The current minimum value of x axis viewport."
      },
      {
        "name": "viewportMax",
        "description": "Specifies the maximum y coordinate of the current viewport for zoom and scroll.\nIf not specified, this value will be the axis max.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        },
        "ojshortdesc": "The current maximum value of x axis viewport."
      },
      {
        "name": "step",
        "description": "The increment between major tick marks in y axis. Defaults to null for automatic calculation based on the data.\nFor log axis, the step is a multiplier, for example, if the step is 2, the major tick marks will be rendered at 1, 2, 4, 8, and so on.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        },
        "ojshortdesc": "The increment between major tick marks in x axis."
      },
      {
        "name": "size",
        "description": "Specifies the size of the axis as a ratio from 0 to 1, based on the width (for horizontal) or height (for vertical) of the chart.\nThis value determines the proportion of space allocated to the axis. The chart will arrange axis elements within this space.\nIf all elements cannot fit, some may be omitted. When the axis title and tick labels do not fit within the available space,\nthe inner-level tick labels will be dropped first, followed by the axis title.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        },
        "ojshortdesc": "The size of the axis."
      },
      {
        "name": "maxSize",
        "description": "Specifies the maximum size of the axis as a ratio from 0 to 1: axis width divided by chart width (for horizontal axes) or axis height divided by chart height (for vertical axes).\nWhen the axis title and tick labels do not fit within the available space, the inner-level tick labels will be dropped first, followed by the axis title.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        },
        "ojshortdesc": "The maximum size of the axis."
      },
      {
        "name": "scale",
        "description": "Defines the axis scale. If set to log, major ticks will rendered will be incremented in logarithmic ratio.",
        "optional": true,
        "type": {
          "names": [
            "\"linear\"",
            "\"log\""
          ]
        },
        "ojshortdesc": "The scale of the axis."
      },
      {
        "name": "title",
        "description": "The title of the axis.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        },
        "ojshortdesc": "The axis title."
      },
      {
        "name": "titleStyle",
        "description": "The object defining the css properties of the axis title.",
        "optional": true,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "Partial<CSSStyleDeclaration>",
            "jsdocOverride": true,
            "for": "titleStyle"
          }
        ],
        "ojshortdesc": "The axis title style."
      }
    ]
  },
  {
    "id": "oj-c.LineChart.PlotArea",
    "name": "PlotArea",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.PlotArea",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "properties": [
      {
        "name": "backgroundColor",
        "description": "The color of the plot area background.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        },
        "ojshortdesc": "The background color of the plot area."
      }
    ]
  },
  {
    "id": "oj-c.LineChart.TextValueFormat",
    "name": "TextValueFormat",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.TextValueFormat",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "properties": [
      {
        "name": "tooltipLabel",
        "description": "A string representing the label that is displayed before the value in the tooltip.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "tooltipDisplay",
        "description": "Whether the value is displayed in the tooltip.",
        "optional": true,
        "type": {
          "names": [
            "\"auto\"",
            "\"off\""
          ]
        },
        "ojvalues": [
          {
            "name": "off",
            "description": "The property will not be displayed in tooltip.",
            "displayName": "Off",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "on",
            "description": "The property will be displayed in tooltip.",
            "displayName": "On",
            "type": {
              "names": [
                "string"
              ]
            }
          }
        ],
        "ojvalueskeeporder": true
      }
    ]
  },
  {
    "id": "oj-c.LineChart.NumericalValueFormat",
    "name": "NumericalValueFormat",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.NumericalValueFormat",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "properties": [
      {
        "name": "converter",
        "description": "The converter to format the numerical value for the tooltip.",
        "optional": false,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "Converter<number>",
            "jsdocOverride": true,
            "for": "converter",
            "module": {
              "Converter": "ojconverter"
            }
          }
        ]
      },
      {
        "name": "tooltipLabel",
        "description": "A string representing the label that is displayed before the value in the tooltip.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "tooltipDisplay",
        "description": "Whether the value is displayed in the tooltip.",
        "optional": true,
        "type": {
          "names": [
            "\"auto\"",
            "\"off\""
          ]
        },
        "ojvalues": [
          {
            "name": "off",
            "description": "The property will not be displayed in tooltip.",
            "displayName": "Off",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "on",
            "description": "The property will be displayed in tooltip.",
            "displayName": "On",
            "type": {
              "names": [
                "string"
              ]
            }
          }
        ],
        "ojvalueskeeporder": true
      }
    ]
  },
  {
    "id": "oj-c.LineChart.ValueFormats",
    "name": "ValueFormats",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.ValueFormats",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "properties": [
      {
        "name": "group",
        "description": "Object that specifies the tooltip behavior for the group.",
        "optional": false,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "oj-c.LineChart.TextValueFormat",
            "jsdocOverride": true,
            "for": "group"
          }
        ]
      },
      {
        "name": "series",
        "description": "Object that specifies the tooltip behavior for the series.",
        "optional": false,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "oj-c.LineChart.TextValueFormat",
            "jsdocOverride": true,
            "for": "series"
          }
        ]
      },
      {
        "name": "value",
        "description": "Object that specifies the value formatting and tooltip behavior for the item value.",
        "optional": false,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "oj-c.LineChart.NumericalValueFormat",
            "jsdocOverride": true,
            "for": "value"
          }
        ]
      },
      {
        "name": "y2",
        "description": "Object that specifies the value formatting and tooltip behavior for the y2 values.",
        "optional": false,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "oj-c.LineChart.NumericalValueFormat",
            "jsdocOverride": true,
            "for": "y2"
          }
        ]
      },
      {
        "name": "label",
        "description": "Object that specifies the tooltip behavior for the data item labels.",
        "optional": false,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "oj-c.LineChart.TextValueFormat",
            "jsdocOverride": true,
            "for": "label"
          }
        ]
      }
    ]
  },
  {
    "id": "oj-c.LineChart.StyleDefaults",
    "name": "StyleDefaults",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.StyleDefaults",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "properties": [
      {
        "name": "groupSeparators",
        "description": "An object defining the group separator lines in hierarchical axis.",
        "optional": true,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "{ rendered?: 'auto' | 'off'; color?: ColorProps['color']; }",
            "jsdocOverride": true,
            "for": "groupSeparators"
          }
        ]
      },
      {
        "name": "markerShape",
        "description": "The shape of the data markers. In addition to the built-in shapes, it may also take SVG path commands to specify a custom shape. The chart will style the custom shapes the same way as built-in shapes, supporting properties like color and borderColor and applying hover and selection effects. Only 'auto' is supported for range series.",
        "optional": true,
        "type": {
          "names": [
            "\"auto\"",
            "\"square\"",
            "\"circle\"",
            "\"diamond\"",
            "\"human\"",
            "\"plus\"",
            "\"star\"",
            "\"triangleDown\"",
            "\"triangleUp\""
          ]
        },
        "ojvalues": [
          {
            "name": "circle",
            "description": "Data markers will be circular in shape.",
            "displayName": "Circle",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "diamond",
            "description": "Data markers will be diamond in shape.",
            "displayName": "Diamond",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "human",
            "description": "Data markers will be human in shape.",
            "displayName": "Human",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "plus",
            "description": "Data markers will be plus in shape.",
            "displayName": "Plus",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "square",
            "description": "Data markers will be square in shape.",
            "displayName": "Square",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "star",
            "description": "Data markers will be star in shape.",
            "displayName": "Star",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "triangleDown",
            "description": "Data markers will be of a triangular shape facing down.",
            "displayName": "Triangle Down",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "triangleUp",
            "description": "Data markers will be of a triangular shape facing up.",
            "displayName": "Triangle Up",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "auto",
            "description": "Data marker shape will be based on chart type.",
            "displayName": "Auto",
            "type": {
              "names": [
                "string"
              ]
            }
          }
        ],
        "ojvalueskeeporder": true,
        "ojshortdesc": "The shape of the data markers."
      },
      {
        "name": "markerColor",
        "description": "The color of the data markers, if different from the series color.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "dataLabelPosition",
        "description": "The position of the data label.",
        "optional": true,
        "type": {
          "names": [
            "\"center\"",
            "\"belowMarker\"",
            "\"aboveMarker\"",
            "\"beforeMarker\"",
            "\"afterMarker\""
          ]
        },
        "ojvalues": [
          {
            "name": "center",
            "description": "Label will be placed in the center of the data marker.",
            "displayName": "Center",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "belowMarker",
            "description": "Label will be placed below the data marker.",
            "displayName": "Below Marker",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "aboveMarker",
            "description": "Label will be placed above the data marker.",
            "displayName": "Above Marker",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "beforeMarker",
            "description": "Label will be placed before the data marker.",
            "displayName": "Before Marker",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "afterMarker",
            "description": "Label will be placed after the data marker.",
            "displayName": "After Marker",
            "type": {
              "names": [
                "string"
              ]
            }
          }
        ],
        "ojvalueskeeporder": true
      }
    ]
  },
  {
    "id": "oj-c.LineChart.LineChartSeries",
    "name": "LineChartSeries",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.LineChartSeries",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "tsgenerictype": {
      "target": "Type",
      "value": "<K>",
      "for": "genericTypeParameters"
    },
    "properties": [
      {
        "name": "items",
        "description": "The line chart items belonging to this line series.",
        "optional": false,
        "type": {
          "names": [
            "Array<object>"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "Array<oj-c.LineChart.LineItem<K>>",
            "jsdocOverride": true,
            "for": "items"
          }
        ]
      },
      {
        "name": "assignedToY2",
        "description": "Defines whether the series is associated with the y2 axis.",
        "optional": true,
        "type": {
          "names": [
            "\"off\"",
            "\"on\""
          ]
        },
        "ojshortdesc": "Defines whether the series is associated with the y2 axis"
      },
      {
        "name": "categories",
        "description": "An array of category strings corresponding to the tag cloud items. This allows highlighting and filtering of items.",
        "optional": true,
        "type": {
          "names": [
            "Array<string>"
          ]
        },
        "ojshortdesc": "An array of category strings corresponding to the tag cloud items."
      },
      {
        "name": "color",
        "description": "The color of the series. The chart legend item will inherit this color value.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "drilling",
        "description": "Whether drilling is enabled on the series item. Drillable objects will show a pointer cursor on hover and fire an <code class=\"prettyprint\">ojDrill</code> event on click (double click if selection is enabled). To enable drilling for all series items at once, use the drilling attribute in the top level.",
        "optional": true,
        "type": {
          "names": [
            "\"off\"",
            "\"inherit\"",
            "\"on\""
          ]
        },
        "ojshortdesc": "Whether drilling is enabled on the series item."
      },
      {
        "name": "lineStyle",
        "description": "The line style of the data line.",
        "optional": true,
        "type": {
          "names": [
            "\"dashed\"",
            "\"solid\"",
            "\"dotted\""
          ]
        }
      },
      {
        "name": "lineType",
        "description": "The line type of the data of line chart.",
        "optional": true,
        "type": {
          "names": [
            "\"curved\"",
            "\"straight\""
          ]
        }
      },
      {
        "name": "lineWidth",
        "description": "The width of the data line.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        }
      },
      {
        "name": "markerShape",
        "description": "The shape of the data markers. In addition to the built-in shapes, it may also take SVG path commands to specify a custom shape. The chart will style the custom shapes the same way as built-in shapes, supporting properties like color and borderColor and applying hover and selection effects. Only 'auto' is supported for range series.",
        "optional": true,
        "type": {
          "names": [
            "\"auto\"",
            "\"square\"",
            "\"circle\"",
            "\"diamond\"",
            "\"human\"",
            "\"plus\"",
            "\"star\"",
            "\"triangleDown\"",
            "\"triangleUp\""
          ]
        },
        "ojshortdesc": "The shape of the data markers."
      },
      {
        "name": "markerColor",
        "description": "The color of the data markers, if different from the series color.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "markerDisplayed",
        "description": "Defines whether the data marker is displayed. If auto, the markers will be displayed whenever the data points are not connected by a line.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        },
        "ojshortdesc": "Defines whether the data marker is displayed."
      },
      {
        "name": "markerSize",
        "description": "The size of the data markers.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        }
      },
      {
        "name": "name",
        "description": "The name of the series, displayed in the legend and datatips.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "shortDesc",
        "description": "The description of this series. This is used for accessibility and for customizing the datatip text on the corresponding legend item for the series.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      }
    ]
  },
  {
    "id": "oj-c.LineChart.Group",
    "name": "Group",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.Group",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "properties": [
      {
        "name": "drilling",
        "description": "Whether drilling is enabled in the group label.",
        "optional": true,
        "type": {
          "names": [
            "\"off\"",
            "\"inherit\"",
            "\"on\""
          ]
        }
      },
      {
        "name": "id",
        "description": "The id of the group.",
        "optional": false,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "name",
        "description": "The name of the group.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "accessibleLabel",
        "description": "The description of the group. This is used for the customizing the tooltip text and only applies to a categorical axis.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "groups",
        "description": "An array of sub groups belonging to this group.",
        "type": {
          "names": [
            "Array<object>"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "Array<oj-c.LineChart.Group>",
            "jsdocOverride": true,
            "for": "groups"
          }
        ]
      }
    ]
  },
  {
    "id": "oj-c.LineChart.ItemDrillDetail",
    "name": "ItemDrillDetail",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.ItemDrillDetail",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "tsgenerictype": {
      "target": "Type",
      "value": "<K,D>",
      "for": "genericTypeParameters"
    },
    "properties": [
      {
        "name": "id",
        "description": "The id of the drilled object.",
        "optional": false,
        "type": {
          "names": [
            "any"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "K",
            "jsdocOverride": true,
            "for": "id"
          }
        ]
      },
      {
        "name": "series",
        "description": "The series id of the drilled object.",
        "optional": false,
        "type": {
          "names": [
            "any"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "K",
            "jsdocOverride": true,
            "for": "series"
          }
        ]
      },
      {
        "name": "group",
        "description": "The group id of the drilled object.",
        "optional": false,
        "type": {
          "names": [
            "any"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "K",
            "jsdocOverride": true,
            "for": "group"
          }
        ]
      },
      {
        "name": "data",
        "description": "The data object of the drilled item.",
        "optional": false,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "oj-c.LineChart.LineItem<K>",
            "jsdocOverride": true,
            "for": "data"
          }
        ]
      },
      {
        "name": "itemData",
        "description": "The row data object of the drilled item. This will only be set if a DataProvider is being used.",
        "optional": false,
        "type": {
          "names": [
            "any"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "D",
            "jsdocOverride": true,
            "for": "itemData"
          }
        ]
      },
      {
        "name": "seriesData",
        "description": "The data for the series of the drilled object.",
        "optional": false,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "oj-c.LineChart.LineChartSeries<K>",
            "jsdocOverride": true,
            "for": "seriesData"
          }
        ]
      },
      {
        "name": "groupData",
        "description": "An array of data for the group the drilled object belongs to.",
        "optional": false,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "oj-c.LineChart.Group",
            "jsdocOverride": true,
            "for": "groupData"
          }
        ]
      }
    ]
  },
  {
    "id": "oj-c.LineChart.SeriesDrillDetail",
    "name": "SeriesDrillDetail",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.SeriesDrillDetail",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "tsgenerictype": {
      "target": "Type",
      "value": "<K>",
      "for": "genericTypeParameters"
    },
    "properties": [
      {
        "name": "id",
        "description": "The id of the drilled object.",
        "optional": false,
        "type": {
          "names": [
            "any"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "K",
            "jsdocOverride": true,
            "for": "id"
          }
        ]
      },
      {
        "name": "series",
        "description": "The series id of the drilled object.",
        "optional": false,
        "type": {
          "names": [
            "any"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "K",
            "jsdocOverride": true,
            "for": "series"
          }
        ]
      },
      {
        "name": "seriesData",
        "description": "The data for the series of the drilled object.",
        "optional": false,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "oj-c.LineChart.LineChartSeries<K>",
            "jsdocOverride": true,
            "for": "seriesData"
          }
        ]
      },
      {
        "name": "items",
        "description": "An array containing objects describing the data items belonging to the drilled group.",
        "optional": false,
        "type": {
          "names": [
            "Array<object>"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "Array<oj-c.LineChart.LineItem<K>>",
            "jsdocOverride": true,
            "for": "items"
          }
        ]
      }
    ]
  },
  {
    "id": "oj-c.LineChart.GroupDrillDetail",
    "name": "GroupDrillDetail",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.GroupDrillDetail",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "tsgenerictype": {
      "target": "Type",
      "value": "<K>",
      "for": "genericTypeParameters"
    },
    "properties": [
      {
        "name": "id",
        "description": "The id of the drilled object.",
        "optional": false,
        "type": {
          "names": [
            "any"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "K",
            "jsdocOverride": true,
            "for": "id"
          }
        ]
      },
      {
        "name": "group",
        "description": "The group id of the drilled object.",
        "optional": false,
        "type": {
          "names": [
            "any"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "K",
            "jsdocOverride": true,
            "for": "group"
          }
        ]
      },
      {
        "name": "groupData",
        "description": "An array of data for the group the drilled object belongs to.",
        "optional": false,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "oj-c.LineChart.Group",
            "jsdocOverride": true,
            "for": "groupData"
          }
        ]
      },
      {
        "name": "items",
        "description": "An array containing objects describing the data items belonging to the drilled group.",
        "optional": false,
        "type": {
          "names": [
            "Array<object>"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "Array<oj-c.LineChart.LineItem<K>>",
            "jsdocOverride": true,
            "for": "items"
          }
        ]
      }
    ]
  },
  {
    "id": "oj-c.LineChart.ViewPortDetail",
    "name": "ViewPortDetail",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.ViewPortDetail",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "properties": [
      {
        "name": "startGroup",
        "description": "The start group of the new viewport on a chart with categorical axis.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "endGroup",
        "description": "The end group of the new viewport on a chart with categorical axis.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "xMax",
        "description": "The maximum x value of the new viewport.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        }
      },
      {
        "name": "xMin",
        "description": "The minimum x value of the new viewport.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        }
      },
      {
        "name": "yMax",
        "description": "The maximum y value of the new viewport.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        }
      },
      {
        "name": "yMin",
        "description": "The minimum y value of the new viewport.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        }
      },
      {
        "name": "y2Max",
        "description": "The maximum y2 value of the new viewport.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        },
        "ojshortdesc": "The maximum y value of the new viewport."
      },
      {
        "name": "y2Min",
        "description": "The minimum y2 value of the new viewport.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        },
        "ojshortdesc": "The minimum y value of the new viewport."
      }
    ]
  },
  {
    "id": "oj-c.LineChart.ChartLegend",
    "name": "ChartLegend",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.ChartLegend",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "The chart legend type.",
    "properties": [
      {
        "name": "position",
        "description": "The position of the legend within the chart. By default, the legend will be placed on the side or bottom\nof the chart.",
        "optional": false,
        "type": {
          "names": [
            "\"auto\"",
            "\"end\"",
            "\"start\"",
            "\"top\"",
            "\"bottom\""
          ]
        },
        "defaultvalue": "'auto'"
      },
      {
        "name": "rendered",
        "description": "Defines whether the legend is rendered. If set to auto, the legend will be hidden for charts with a large bunber of series.",
        "optional": false,
        "type": {
          "names": [
            "\"auto\"",
            "\"off\"",
            "\"on\""
          ]
        },
        "defaultvalue": "'on'"
      },
      {
        "name": "maxSize",
        "description": "The max size of the legend in pixels or in percentage.",
        "optional": true,
        "type": {
          "names": [
            "number|string"
          ]
        }
      },
      {
        "name": "size",
        "description": "Defines the size of legend in pixel or percent.",
        "optional": true,
        "type": {
          "names": [
            "number|string"
          ]
        }
      },
      {
        "name": "symbolHeight",
        "description": "The height of the legend symbol (line or marker) in pixels.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        }
      },
      {
        "name": "symbolWidth",
        "description": "The width of the legend symbol (line or marker) in pixels.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        }
      }
    ]
  },
  {
    "id": "oj-c.LineChart.MenuItem",
    "name": "MenuItem",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.MenuItem",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "Specifies a standard menu item.",
    "properties": [
      {
        "name": "type",
        "description": "Specifies a standard menu item.",
        "optional": true,
        "type": {
          "names": [
            "\"item\""
          ]
        },
        "ojshortdesc": "Specifies a standard menu item."
      },
      {
        "name": "label",
        "description": "The menu item label.",
        "optional": false,
        "type": {
          "names": [
            "string"
          ]
        },
        "ojshortdesc": "The menu item label."
      },
      {
        "name": "key",
        "description": "A unique key associated with the menu item.",
        "optional": false,
        "type": {
          "names": [
            "string"
          ]
        },
        "ojshortdesc": "A unique key associated with the menu item."
      },
      {
        "name": "disabled",
        "description": "Specifies if the menu item is disabled (enabled by default).",
        "optional": true,
        "type": {
          "names": [
            "boolean"
          ]
        },
        "ojshortdesc": "Specifies if the menu item is disabled (enabled by default)."
      },
      {
        "name": "onAction",
        "description": "Optional callback function associated with the menu item.",
        "optional": true,
        "type": {
          "names": [
            "function"
          ]
        },
        "ojshortdesc": "Optional callback function associated with the menu item."
      },
      {
        "name": "startIcon",
        "description": "Optional icon to render at the start of the menu item.",
        "optional": true,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "{ type?: 'class'; class: string; }|{ type: 'img'; src: string; }",
            "jsdocOverride": true,
            "for": "startIcon"
          }
        ],
        "ojshortdesc": "Optional icon to render at the start of the menu item."
      },
      {
        "name": "endIcon",
        "description": "Optional icon to render at the end of the menu item.",
        "optional": true,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "{ type?: 'class'; class: string; }|{ type: 'img'; src: string; }",
            "jsdocOverride": true,
            "for": "endIcon"
          }
        ],
        "ojshortdesc": "Optional icon to render at the end of the menu item."
      },
      {
        "name": "variant",
        "description": "Specifies the menu item behavior.",
        "optional": true,
        "type": {
          "names": [
            "\"standard\"",
            "\"destructive\""
          ]
        },
        "ojshortdesc": "Specifies the menu item behavior."
      }
    ]
  },
  {
    "id": "oj-c.LineChart.ContextMenuSeparator",
    "name": "ContextMenuSeparator",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.ContextMenuSeparator",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "properties": [
      {
        "name": "type",
        "optional": false,
        "type": {
          "names": [
            "\"separator\""
          ]
        }
      }
    ]
  },
  {
    "id": "oj-c.LineChart.MenuSelectItem",
    "name": "MenuSelectItem",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.MenuSelectItem",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "Specifies a selectable item in a menu item.",
    "properties": [
      {
        "name": "label",
        "description": "The selectable item label.",
        "optional": false,
        "type": {
          "names": [
            "string"
          ]
        },
        "ojshortdesc": "The selectable item label."
      },
      {
        "name": "disabled",
        "description": "Specifies if the selectable item is disabled (enabled by default).",
        "optional": true,
        "type": {
          "names": [
            "boolean"
          ]
        },
        "ojshortdesc": "Specifies if the selectable item is disabled (enabled by default)."
      },
      {
        "name": "startIcon",
        "description": "Optional icon to render at the start of the selectable item.",
        "optional": true,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "{ type?: 'class'; class: string; }|{ type: 'img'; src: string; }",
            "jsdocOverride": true,
            "for": "startIcon"
          }
        ],
        "ojshortdesc": "Optional icon to render at the start of the selectable item."
      },
      {
        "name": "endIcon",
        "description": "Optional icon to render at the end of the selectable item.",
        "optional": true,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "{ type?: 'class'; class: string; }|{ type: 'img'; src: string; }",
            "jsdocOverride": true,
            "for": "endIcon"
          }
        ],
        "ojshortdesc": "Optional icon to render at the end of the selectable item."
      },
      {
        "name": "value",
        "description": "The value associated with the selectable item.",
        "optional": false,
        "type": {
          "names": [
            "string"
          ]
        },
        "ojshortdesc": "The value associated with the selectable item."
      }
    ]
  },
  {
    "id": "oj-c.LineChart.MenuSelection",
    "name": "MenuSelection",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.MenuSelection",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "properties": [
      {
        "name": "at",
        "optional": false,
        "type": {
          "names": [
            "function"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "(index: number) => string | undefined",
            "jsdocOverride": true,
            "for": "at"
          }
        ]
      }
    ]
  },
  {
    "id": "oj-c.LineChart.SelectMenuItemDetail",
    "name": "SelectMenuItemDetail",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.SelectMenuItemDetail",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "tsgenerictype": {
      "target": "Type",
      "value": "<T extends oj-c.LineChart.MenuSelection>",
      "for": "genericTypeParameters"
    },
    "properties": [
      {
        "name": "value",
        "optional": false,
        "type": {
          "names": [
            "any"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "T",
            "jsdocOverride": true,
            "for": "value"
          }
        ]
      },
      {
        "name": "menuSelectionGroupKey",
        "optional": false,
        "type": {
          "names": [
            "string"
          ]
        }
      }
    ]
  },
  {
    "id": "oj-c.LineChart.ContextMenuSelectSingle",
    "name": "ContextMenuSelectSingle",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.ContextMenuSelectSingle",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "properties": [
      {
        "name": "type",
        "description": "Specifies a select single menu item.",
        "optional": false,
        "type": {
          "names": [
            "\"selectsingle\""
          ]
        },
        "ojshortdesc": "Specifies a select single menu item."
      },
      {
        "name": "key",
        "description": "A unique key associated with the select single.",
        "optional": false,
        "type": {
          "names": [
            "string"
          ]
        },
        "ojshortdesc": "A unique key associated with the select single."
      },
      {
        "name": "items",
        "description": "Specifies the array of select items that make up the select single.",
        "optional": true,
        "type": {
          "names": [
            "Array<object>"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "Array<oj-c.LineChart.MenuSelectItem>",
            "jsdocOverride": true,
            "for": "items"
          }
        ]
      },
      {
        "name": "selection",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "onSelection",
        "optional": true,
        "type": {
          "names": [
            "function"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "(detail: oj-c.LineChart.SelectMenuItemDetail<string>) => void",
            "jsdocOverride": true,
            "for": "onSelection"
          }
        ]
      }
    ]
  },
  {
    "id": "oj-c.LineChart.ContextMenuSelectMultiple",
    "name": "ContextMenuSelectMultiple",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.ContextMenuSelectMultiple",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "properties": [
      {
        "name": "type",
        "description": "Specifies a select multiple menu item.",
        "optional": false,
        "type": {
          "names": [
            "\"selectmultiple\""
          ]
        },
        "ojshortdesc": "Specifies a select multiple menu item."
      },
      {
        "name": "key",
        "description": "A unique key associated with the select multiple.",
        "optional": false,
        "type": {
          "names": [
            "string"
          ]
        },
        "ojshortdesc": "A unique key associated with the select multiple."
      },
      {
        "name": "items",
        "description": "Specifies the array of select items that make up the select multiple.",
        "optional": true,
        "type": {
          "names": [
            "Array<object>"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "Array<oj-c.LineChart.MenuSelectItem>",
            "jsdocOverride": true,
            "for": "items"
          }
        ]
      },
      {
        "name": "selection",
        "optional": true,
        "type": {
          "names": [
            "Array<string>"
          ]
        }
      },
      {
        "name": "onSelection",
        "optional": true,
        "type": {
          "names": [
            "function"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "(detail: oj-c.LineChart.SelectMenuItemDetail<string[]>) => void",
            "jsdocOverride": true,
            "for": "onSelection"
          }
        ]
      }
    ]
  },
  {
    "id": "oj-c.LineChart.ContextMenuSubMenu",
    "name": "ContextMenuSubMenu",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.ContextMenuSubMenu",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "properties": [
      {
        "name": "type",
        "description": "Specifies a submenu menu item.",
        "optional": false,
        "type": {
          "names": [
            "\"submenu\""
          ]
        },
        "ojshortdesc": "Specifies a submenu menu item."
      },
      {
        "name": "key",
        "description": "A unique key associated with the submenu menu item.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        },
        "ojshortdesc": "A unique key associated with the submenu menu item."
      },
      {
        "name": "label",
        "description": "The submenu label.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        },
        "ojshortdesc": "The submenu label."
      },
      {
        "name": "disabled",
        "description": "Specifies if the submenu is disabled (enabled by default).",
        "optional": true,
        "type": {
          "names": [
            "boolean"
          ]
        },
        "ojshortdesc": "Specifies if the submenu is disabled (enabled by default)."
      },
      {
        "name": "startIcon",
        "description": "Optional icon to render at the start of the submenu.",
        "optional": true,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "{ type?: 'class'; class: string; }|{ type: 'img'; src: string; }",
            "jsdocOverride": true,
            "for": "startIcon"
          }
        ],
        "ojshortdesc": "Optional icon to render at the start of the submenu."
      },
      {
        "name": "items",
        "optional": true,
        "type": {
          "names": [
            "Array<string|object>"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "Array<string|oj-c.LineChart.MenuItem|oj-c.LineChart.ContextMenuSeparator|oj-c.LineChart.ContextMenuSubMenu|oj-c.LineChart.ContextMenuSelectSingle|oj-c.LineChart.ContextMenuSelectMultiple>",
            "jsdocOverride": true,
            "for": "items"
          }
        ]
      }
    ]
  },
  {
    "id": "oj-c.LineChart.ContextMenuItems",
    "name": "ContextMenuItems",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.ContextMenuItems",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "tstype": [
      {
        "target": "Type",
        "value": "oj-c.LineChart.MenuItem|oj-c.LineChart.ContextMenuSeparator|oj-c.LineChart.ContextMenuSubMenu|oj-c.LineChart.ContextMenuSelectSingle|oj-c.LineChart.ContextMenuSelectMultiple",
        "jsdocOverride": true
      }
    ]
  },
  {
    "id": "oj-c.LineChart.LineChartContextMenuConfig",
    "name": "LineChartContextMenuConfig",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.LineChartContextMenuConfig",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "tsgenerictype": {
      "target": "Type",
      "value": "<K,D>",
      "for": "genericTypeParameters"
    },
    "properties": [
      {
        "name": "accessibleLabel",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "items",
        "optional": false,
        "type": {
          "names": [
            "function"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "(context: LineContextMenuContext<K, D>) => Array<oj-c.LineChart.ContextMenuItems>",
            "jsdocOverride": true,
            "for": "items"
          }
        ]
      }
    ]
  },
  {
    "id": "oj-c.LineChart.ContextMenuActionDetail",
    "name": "ContextMenuActionDetail",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.ContextMenuActionDetail",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "tsgenerictype": {
      "target": "Type",
      "value": "<C>",
      "for": "genericTypeParameters"
    },
    "properties": [
      {
        "name": "menuItemKey",
        "optional": false,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "contextMenuContext",
        "optional": false,
        "type": {
          "names": [
            "any"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "C",
            "jsdocOverride": true,
            "for": "contextMenuContext"
          }
        ]
      }
    ]
  },
  {
    "id": "oj-c.LineChart.ContextMenuSelectionDetail",
    "name": "ContextMenuSelectionDetail",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.ContextMenuSelectionDetail",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "tsgenerictype": {
      "target": "Type",
      "value": "<C>",
      "for": "genericTypeParameters"
    },
    "properties": [
      {
        "name": "value",
        "optional": false,
        "type": {
          "names": [
            "string|Array<string>"
          ]
        }
      },
      {
        "name": "contextMenuContext",
        "optional": false,
        "type": {
          "names": [
            "any"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "C",
            "jsdocOverride": true,
            "for": "contextMenuContext"
          }
        ]
      },
      {
        "name": "menuSelectionGroupKey",
        "optional": false,
        "type": {
          "names": [
            "string"
          ]
        }
      }
    ]
  },
  {
    "id": "oj-c.LineChart.ReferenceLineData",
    "name": "ReferenceLineData",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.ReferenceLineData",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "properties": [
      {
        "name": "id",
        "optional": false,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "color",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "location",
        "optional": false,
        "type": {
          "names": [
            "\"front\"",
            "\"back\""
          ]
        }
      },
      {
        "name": "accessibleLabel",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "lineWidth",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        }
      },
      {
        "name": "lineStyle",
        "optional": true,
        "type": {
          "names": [
            "\"dashed\"",
            "\"solid\"",
            "\"dotted\""
          ]
        }
      },
      {
        "name": "type",
        "optional": false,
        "type": {
          "names": [
            "\"line\""
          ]
        }
      },
      {
        "name": "value",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        }
      },
      {
        "name": "items",
        "optional": true,
        "type": {
          "names": [
            "Array<object>"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "Array<{ value: number; }>",
            "jsdocOverride": true,
            "for": "items"
          }
        ],
        "properties": [
          {
            "name": "value",
            "optional": false,
            "type": {
              "names": [
                "number"
              ]
            }
          }
        ]
      }
    ]
  },
  {
    "id": "oj-c.LineChart.ReferenceAreaData",
    "name": "ReferenceAreaData",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.ReferenceAreaData",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "properties": [
      {
        "name": "id",
        "optional": false,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "color",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "location",
        "optional": false,
        "type": {
          "names": [
            "\"front\"",
            "\"back\""
          ]
        }
      },
      {
        "name": "accessibleLabel",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "type",
        "optional": false,
        "type": {
          "names": [
            "\"area\""
          ]
        }
      },
      {
        "name": "low",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        }
      },
      {
        "name": "high",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        }
      },
      {
        "name": "items",
        "optional": true,
        "type": {
          "names": [
            "Array<object>"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "Array<{ low: number; high: number; }>",
            "jsdocOverride": true,
            "for": "items"
          }
        ],
        "properties": [
          {
            "name": "low",
            "optional": false,
            "type": {
              "names": [
                "number"
              ]
            }
          },
          {
            "name": "high",
            "optional": false,
            "type": {
              "names": [
                "number"
              ]
            }
          }
        ]
      }
    ]
  },
  {
    "id": "oj-c.LineChart.VisTextStyle",
    "name": "VisTextStyle",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.VisTextStyle",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "properties": [
      {
        "name": "color",
        "description": "The color of the text.",
        "optional": true,
        "type": {
          "names": [
            "\"transparent\"|\"inherit\"|\"initial\"|\"-moz-initial\"|\"revert\"|\"revert-layer\"|\"unset\"|\"aliceblue\"|\"antiquewhite\"|\"aqua\"|\"aquamarine\"|\"azure\"|\"beige\"|\"bisque\"|\"black\"|\"blanchedalmond\"|\"blue\"|\"blueviolet\"|\"brown\"|\"burlywood\"|\"cadetblue\"|\"chartreuse\"|\"chocolate\"|\"coral\"|\"cornflowerblue\"|\"cornsilk\"|\"crimson\"|\"cyan\"|\"darkblue\"|\"darkcyan\"|\"darkgoldenrod\"|\"darkgray\"|\"darkgreen\"|\"darkgrey\"|\"darkkhaki\"|\"darkmagenta\"|\"darkolivegreen\"|\"darkorange\"|\"darkorchid\"|\"darkred\"|\"darksalmon\"|\"darkseagreen\"|\"darkslateblue\"|\"darkslategray\"|\"darkslategrey\"|\"darkturquoise\"|\"darkviolet\"|\"deeppink\"|\"deepskyblue\"|\"dimgray\"|\"dimgrey\"|\"dodgerblue\"|\"firebrick\"|\"floralwhite\"|\"forestgreen\"|\"fuchsia\"|\"gainsboro\"|\"ghostwhite\"|\"gold\"|\"goldenrod\"|\"gray\"|\"green\"|\"greenyellow\"|\"grey\"|\"honeydew\"|\"hotpink\"|\"indianred\"|\"indigo\"|\"ivory\"|\"khaki\"|\"lavender\"|\"lavenderblush\"|\"lawngreen\"|\"lemonchiffon\"|\"lightblue\"|\"lightcoral\"|\"lightcyan\"|\"lightgoldenrodyellow\"|\"lightgray\"|\"lightgreen\"|\"lightgrey\"|\"lightpink\"|\"lightsalmon\"|\"lightseagreen\"|\"lightskyblue\"|\"lightslategray\"|\"lightslategrey\"|\"lightsteelblue\"|\"lightyellow\"|\"lime\"|\"limegreen\"|\"linen\"|\"magenta\"|\"maroon\"|\"mediumaquamarine\"|\"mediumblue\"|\"mediumorchid\"|\"mediumpurple\"|\"mediumseagreen\"|\"mediumslateblue\"|\"mediumspringgreen\"|\"mediumturquoise\"|\"mediumvioletred\"|\"midnightblue\"|\"mintcream\"|\"mistyrose\"|\"moccasin\"|\"navajowhite\"|\"navy\"|\"oldlace\"|\"olive\"|\"olivedrab\"|\"orange\"|\"orangered\"|\"orchid\"|\"palegoldenrod\"|\"palegreen\"|\"paleturquoise\"|\"palevioletred\"|\"papayawhip\"|\"peachpuff\"|\"peru\"|\"pink\"|\"plum\"|\"powderblue\"|\"purple\"|\"rebeccapurple\"|\"red\"|\"rosybrown\"|\"royalblue\"|\"saddlebrown\"|\"salmon\"|\"sandybrown\"|\"seagreen\"|\"seashell\"|\"sienna\"|\"silver\"|\"skyblue\"|\"slateblue\"|\"slategray\"|\"slategrey\"|\"snow\"|\"springgreen\"|\"steelblue\"|\"tan\"|\"teal\"|\"thistle\"|\"tomato\"|\"turquoise\"|\"violet\"|\"wheat\"|\"white\"|\"whitesmoke\"|\"yellow\"|\"yellowgreen\"|\"ActiveBorder\"|\"ActiveCaption\"|\"AppWorkspace\"|\"Background\"|\"ButtonFace\"|\"ButtonHighlight\"|\"ButtonShadow\"|\"ButtonText\"|\"CaptionText\"|\"GrayText\"|\"Highlight\"|\"HighlightText\"|\"InactiveBorder\"|\"InactiveCaption\"|\"InactiveCaptionText\"|\"InfoBackground\"|\"InfoText\"|\"Menu\"|\"MenuText\"|\"Scrollbar\"|\"ThreeDDarkShadow\"|\"ThreeDFace\"|\"ThreeDHighlight\"|\"ThreeDLightShadow\"|\"ThreeDShadow\"|\"Window\"|\"WindowFrame\"|\"WindowText\"|\"currentcolor\"|string"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "\"transparent\"|\"inherit\"|\"initial\"|\"-moz-initial\"|\"revert\"|\"revert-layer\"|\"unset\"|\"aliceblue\"|\"antiquewhite\"|\"aqua\"|\"aquamarine\"|\"azure\"|\"beige\"|\"bisque\"|\"black\"|\"blanchedalmond\"|\"blue\"|\"blueviolet\"|\"brown\"|\"burlywood\"|\"cadetblue\"|\"chartreuse\"|\"chocolate\"|\"coral\"|\"cornflowerblue\"|\"cornsilk\"|\"crimson\"|\"cyan\"|\"darkblue\"|\"darkcyan\"|\"darkgoldenrod\"|\"darkgray\"|\"darkgreen\"|\"darkgrey\"|\"darkkhaki\"|\"darkmagenta\"|\"darkolivegreen\"|\"darkorange\"|\"darkorchid\"|\"darkred\"|\"darksalmon\"|\"darkseagreen\"|\"darkslateblue\"|\"darkslategray\"|\"darkslategrey\"|\"darkturquoise\"|\"darkviolet\"|\"deeppink\"|\"deepskyblue\"|\"dimgray\"|\"dimgrey\"|\"dodgerblue\"|\"firebrick\"|\"floralwhite\"|\"forestgreen\"|\"fuchsia\"|\"gainsboro\"|\"ghostwhite\"|\"gold\"|\"goldenrod\"|\"gray\"|\"green\"|\"greenyellow\"|\"grey\"|\"honeydew\"|\"hotpink\"|\"indianred\"|\"indigo\"|\"ivory\"|\"khaki\"|\"lavender\"|\"lavenderblush\"|\"lawngreen\"|\"lemonchiffon\"|\"lightblue\"|\"lightcoral\"|\"lightcyan\"|\"lightgoldenrodyellow\"|\"lightgray\"|\"lightgreen\"|\"lightgrey\"|\"lightpink\"|\"lightsalmon\"|\"lightseagreen\"|\"lightskyblue\"|\"lightslategray\"|\"lightslategrey\"|\"lightsteelblue\"|\"lightyellow\"|\"lime\"|\"limegreen\"|\"linen\"|\"magenta\"|\"maroon\"|\"mediumaquamarine\"|\"mediumblue\"|\"mediumorchid\"|\"mediumpurple\"|\"mediumseagreen\"|\"mediumslateblue\"|\"mediumspringgreen\"|\"mediumturquoise\"|\"mediumvioletred\"|\"midnightblue\"|\"mintcream\"|\"mistyrose\"|\"moccasin\"|\"navajowhite\"|\"navy\"|\"oldlace\"|\"olive\"|\"olivedrab\"|\"orange\"|\"orangered\"|\"orchid\"|\"palegoldenrod\"|\"palegreen\"|\"paleturquoise\"|\"palevioletred\"|\"papayawhip\"|\"peachpuff\"|\"peru\"|\"pink\"|\"plum\"|\"powderblue\"|\"purple\"|\"rebeccapurple\"|\"red\"|\"rosybrown\"|\"royalblue\"|\"saddlebrown\"|\"salmon\"|\"sandybrown\"|\"seagreen\"|\"seashell\"|\"sienna\"|\"silver\"|\"skyblue\"|\"slateblue\"|\"slategray\"|\"slategrey\"|\"snow\"|\"springgreen\"|\"steelblue\"|\"tan\"|\"teal\"|\"thistle\"|\"tomato\"|\"turquoise\"|\"violet\"|\"wheat\"|\"white\"|\"whitesmoke\"|\"yellow\"|\"yellowgreen\"|\"ActiveBorder\"|\"ActiveCaption\"|\"AppWorkspace\"|\"Background\"|\"ButtonFace\"|\"ButtonHighlight\"|\"ButtonShadow\"|\"ButtonText\"|\"CaptionText\"|\"GrayText\"|\"Highlight\"|\"HighlightText\"|\"InactiveBorder\"|\"InactiveCaption\"|\"InactiveCaptionText\"|\"InfoBackground\"|\"InfoText\"|\"Menu\"|\"MenuText\"|\"Scrollbar\"|\"ThreeDDarkShadow\"|\"ThreeDFace\"|\"ThreeDHighlight\"|\"ThreeDLightShadow\"|\"ThreeDShadow\"|\"Window\"|\"WindowFrame\"|\"WindowText\"|\"currentcolor\"|string",
            "jsdocOverride": true
          }
        ],
        "ojvalues": [
          {
            "name": "transparent",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "inherit",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "initial",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "-moz-initial",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "revert",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "revert-layer",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "unset",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "aliceblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "antiquewhite",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "aqua",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "aquamarine",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "azure",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "beige",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "bisque",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "black",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "blanchedalmond",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "blue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "blueviolet",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "brown",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "burlywood",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "cadetblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "chartreuse",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "chocolate",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "coral",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "cornflowerblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "cornsilk",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "crimson",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "cyan",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkcyan",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkgoldenrod",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkgray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkgrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkkhaki",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkmagenta",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkolivegreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkorange",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkorchid",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkred",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darksalmon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkseagreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkslateblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkslategray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkslategrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkturquoise",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkviolet",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "deeppink",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "deepskyblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "dimgray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "dimgrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "dodgerblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "firebrick",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "floralwhite",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "forestgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "fuchsia",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "gainsboro",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ghostwhite",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "gold",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "goldenrod",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "gray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "green",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "greenyellow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "grey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "honeydew",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "hotpink",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "indianred",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "indigo",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ivory",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "khaki",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lavender",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lavenderblush",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lawngreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lemonchiffon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightcoral",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightcyan",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightgoldenrodyellow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightgray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightgrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightpink",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightsalmon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightseagreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightskyblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightslategray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightslategrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightsteelblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightyellow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lime",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "limegreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "linen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "magenta",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "maroon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumaquamarine",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumorchid",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumpurple",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumseagreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumslateblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumspringgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumturquoise",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumvioletred",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "midnightblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mintcream",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mistyrose",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "moccasin",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "navajowhite",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "navy",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "oldlace",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "olive",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "olivedrab",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "orange",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "orangered",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "orchid",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "palegoldenrod",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "palegreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "paleturquoise",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "palevioletred",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "papayawhip",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "peachpuff",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "peru",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "pink",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "plum",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "powderblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "purple",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "rebeccapurple",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "red",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "rosybrown",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "royalblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "saddlebrown",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "salmon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "sandybrown",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "seagreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "seashell",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "sienna",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "silver",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "skyblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "slateblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "slategray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "slategrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "snow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "springgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "steelblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "tan",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "teal",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "thistle",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "tomato",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "turquoise",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "violet",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "wheat",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "white",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "whitesmoke",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "yellow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "yellowgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ActiveBorder",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ActiveCaption",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "AppWorkspace",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Background",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ButtonFace",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ButtonHighlight",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ButtonShadow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ButtonText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "CaptionText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "GrayText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Highlight",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "HighlightText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InactiveBorder",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InactiveCaption",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InactiveCaptionText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InfoBackground",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InfoText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Menu",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "MenuText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Scrollbar",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDDarkShadow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDFace",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDHighlight",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDLightShadow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDShadow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Window",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "WindowFrame",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "WindowText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "currentcolor",
            "type": {
              "names": [
                "string"
              ]
            }
          }
        ],
        "ojvalueskeeporder": true
      },
      {
        "name": "fontSize",
        "description": "The font size of the text.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "fontWeight",
        "description": "The font weight of the text.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "fontStyle",
        "description": "The font style of the text.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "whiteSpace",
        "description": "Whether the text wrap is enabled or not.",
        "optional": true,
        "type": {
          "names": [
            "\"normal\"",
            "\"nowrap\""
          ]
        }
      }
    ]
  },
  {
    "id": "oj-c.LineChart.VisLabelStyle",
    "name": "VisLabelStyle",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.VisLabelStyle",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "properties": [
      {
        "name": "color",
        "description": "The color of the text.",
        "optional": true,
        "type": {
          "names": [
            "\"transparent\"|\"inherit\"|\"initial\"|\"-moz-initial\"|\"revert\"|\"revert-layer\"|\"unset\"|\"aliceblue\"|\"antiquewhite\"|\"aqua\"|\"aquamarine\"|\"azure\"|\"beige\"|\"bisque\"|\"black\"|\"blanchedalmond\"|\"blue\"|\"blueviolet\"|\"brown\"|\"burlywood\"|\"cadetblue\"|\"chartreuse\"|\"chocolate\"|\"coral\"|\"cornflowerblue\"|\"cornsilk\"|\"crimson\"|\"cyan\"|\"darkblue\"|\"darkcyan\"|\"darkgoldenrod\"|\"darkgray\"|\"darkgreen\"|\"darkgrey\"|\"darkkhaki\"|\"darkmagenta\"|\"darkolivegreen\"|\"darkorange\"|\"darkorchid\"|\"darkred\"|\"darksalmon\"|\"darkseagreen\"|\"darkslateblue\"|\"darkslategray\"|\"darkslategrey\"|\"darkturquoise\"|\"darkviolet\"|\"deeppink\"|\"deepskyblue\"|\"dimgray\"|\"dimgrey\"|\"dodgerblue\"|\"firebrick\"|\"floralwhite\"|\"forestgreen\"|\"fuchsia\"|\"gainsboro\"|\"ghostwhite\"|\"gold\"|\"goldenrod\"|\"gray\"|\"green\"|\"greenyellow\"|\"grey\"|\"honeydew\"|\"hotpink\"|\"indianred\"|\"indigo\"|\"ivory\"|\"khaki\"|\"lavender\"|\"lavenderblush\"|\"lawngreen\"|\"lemonchiffon\"|\"lightblue\"|\"lightcoral\"|\"lightcyan\"|\"lightgoldenrodyellow\"|\"lightgray\"|\"lightgreen\"|\"lightgrey\"|\"lightpink\"|\"lightsalmon\"|\"lightseagreen\"|\"lightskyblue\"|\"lightslategray\"|\"lightslategrey\"|\"lightsteelblue\"|\"lightyellow\"|\"lime\"|\"limegreen\"|\"linen\"|\"magenta\"|\"maroon\"|\"mediumaquamarine\"|\"mediumblue\"|\"mediumorchid\"|\"mediumpurple\"|\"mediumseagreen\"|\"mediumslateblue\"|\"mediumspringgreen\"|\"mediumturquoise\"|\"mediumvioletred\"|\"midnightblue\"|\"mintcream\"|\"mistyrose\"|\"moccasin\"|\"navajowhite\"|\"navy\"|\"oldlace\"|\"olive\"|\"olivedrab\"|\"orange\"|\"orangered\"|\"orchid\"|\"palegoldenrod\"|\"palegreen\"|\"paleturquoise\"|\"palevioletred\"|\"papayawhip\"|\"peachpuff\"|\"peru\"|\"pink\"|\"plum\"|\"powderblue\"|\"purple\"|\"rebeccapurple\"|\"red\"|\"rosybrown\"|\"royalblue\"|\"saddlebrown\"|\"salmon\"|\"sandybrown\"|\"seagreen\"|\"seashell\"|\"sienna\"|\"silver\"|\"skyblue\"|\"slateblue\"|\"slategray\"|\"slategrey\"|\"snow\"|\"springgreen\"|\"steelblue\"|\"tan\"|\"teal\"|\"thistle\"|\"tomato\"|\"turquoise\"|\"violet\"|\"wheat\"|\"white\"|\"whitesmoke\"|\"yellow\"|\"yellowgreen\"|\"ActiveBorder\"|\"ActiveCaption\"|\"AppWorkspace\"|\"Background\"|\"ButtonFace\"|\"ButtonHighlight\"|\"ButtonShadow\"|\"ButtonText\"|\"CaptionText\"|\"GrayText\"|\"Highlight\"|\"HighlightText\"|\"InactiveBorder\"|\"InactiveCaption\"|\"InactiveCaptionText\"|\"InfoBackground\"|\"InfoText\"|\"Menu\"|\"MenuText\"|\"Scrollbar\"|\"ThreeDDarkShadow\"|\"ThreeDFace\"|\"ThreeDHighlight\"|\"ThreeDLightShadow\"|\"ThreeDShadow\"|\"Window\"|\"WindowFrame\"|\"WindowText\"|\"currentcolor\"|string"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "\"transparent\"|\"inherit\"|\"initial\"|\"-moz-initial\"|\"revert\"|\"revert-layer\"|\"unset\"|\"aliceblue\"|\"antiquewhite\"|\"aqua\"|\"aquamarine\"|\"azure\"|\"beige\"|\"bisque\"|\"black\"|\"blanchedalmond\"|\"blue\"|\"blueviolet\"|\"brown\"|\"burlywood\"|\"cadetblue\"|\"chartreuse\"|\"chocolate\"|\"coral\"|\"cornflowerblue\"|\"cornsilk\"|\"crimson\"|\"cyan\"|\"darkblue\"|\"darkcyan\"|\"darkgoldenrod\"|\"darkgray\"|\"darkgreen\"|\"darkgrey\"|\"darkkhaki\"|\"darkmagenta\"|\"darkolivegreen\"|\"darkorange\"|\"darkorchid\"|\"darkred\"|\"darksalmon\"|\"darkseagreen\"|\"darkslateblue\"|\"darkslategray\"|\"darkslategrey\"|\"darkturquoise\"|\"darkviolet\"|\"deeppink\"|\"deepskyblue\"|\"dimgray\"|\"dimgrey\"|\"dodgerblue\"|\"firebrick\"|\"floralwhite\"|\"forestgreen\"|\"fuchsia\"|\"gainsboro\"|\"ghostwhite\"|\"gold\"|\"goldenrod\"|\"gray\"|\"green\"|\"greenyellow\"|\"grey\"|\"honeydew\"|\"hotpink\"|\"indianred\"|\"indigo\"|\"ivory\"|\"khaki\"|\"lavender\"|\"lavenderblush\"|\"lawngreen\"|\"lemonchiffon\"|\"lightblue\"|\"lightcoral\"|\"lightcyan\"|\"lightgoldenrodyellow\"|\"lightgray\"|\"lightgreen\"|\"lightgrey\"|\"lightpink\"|\"lightsalmon\"|\"lightseagreen\"|\"lightskyblue\"|\"lightslategray\"|\"lightslategrey\"|\"lightsteelblue\"|\"lightyellow\"|\"lime\"|\"limegreen\"|\"linen\"|\"magenta\"|\"maroon\"|\"mediumaquamarine\"|\"mediumblue\"|\"mediumorchid\"|\"mediumpurple\"|\"mediumseagreen\"|\"mediumslateblue\"|\"mediumspringgreen\"|\"mediumturquoise\"|\"mediumvioletred\"|\"midnightblue\"|\"mintcream\"|\"mistyrose\"|\"moccasin\"|\"navajowhite\"|\"navy\"|\"oldlace\"|\"olive\"|\"olivedrab\"|\"orange\"|\"orangered\"|\"orchid\"|\"palegoldenrod\"|\"palegreen\"|\"paleturquoise\"|\"palevioletred\"|\"papayawhip\"|\"peachpuff\"|\"peru\"|\"pink\"|\"plum\"|\"powderblue\"|\"purple\"|\"rebeccapurple\"|\"red\"|\"rosybrown\"|\"royalblue\"|\"saddlebrown\"|\"salmon\"|\"sandybrown\"|\"seagreen\"|\"seashell\"|\"sienna\"|\"silver\"|\"skyblue\"|\"slateblue\"|\"slategray\"|\"slategrey\"|\"snow\"|\"springgreen\"|\"steelblue\"|\"tan\"|\"teal\"|\"thistle\"|\"tomato\"|\"turquoise\"|\"violet\"|\"wheat\"|\"white\"|\"whitesmoke\"|\"yellow\"|\"yellowgreen\"|\"ActiveBorder\"|\"ActiveCaption\"|\"AppWorkspace\"|\"Background\"|\"ButtonFace\"|\"ButtonHighlight\"|\"ButtonShadow\"|\"ButtonText\"|\"CaptionText\"|\"GrayText\"|\"Highlight\"|\"HighlightText\"|\"InactiveBorder\"|\"InactiveCaption\"|\"InactiveCaptionText\"|\"InfoBackground\"|\"InfoText\"|\"Menu\"|\"MenuText\"|\"Scrollbar\"|\"ThreeDDarkShadow\"|\"ThreeDFace\"|\"ThreeDHighlight\"|\"ThreeDLightShadow\"|\"ThreeDShadow\"|\"Window\"|\"WindowFrame\"|\"WindowText\"|\"currentcolor\"|string",
            "jsdocOverride": true
          }
        ],
        "ojvalues": [
          {
            "name": "transparent",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "inherit",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "initial",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "-moz-initial",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "revert",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "revert-layer",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "unset",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "aliceblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "antiquewhite",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "aqua",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "aquamarine",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "azure",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "beige",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "bisque",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "black",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "blanchedalmond",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "blue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "blueviolet",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "brown",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "burlywood",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "cadetblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "chartreuse",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "chocolate",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "coral",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "cornflowerblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "cornsilk",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "crimson",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "cyan",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkcyan",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkgoldenrod",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkgray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkgrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkkhaki",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkmagenta",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkolivegreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkorange",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkorchid",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkred",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darksalmon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkseagreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkslateblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkslategray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkslategrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkturquoise",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkviolet",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "deeppink",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "deepskyblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "dimgray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "dimgrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "dodgerblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "firebrick",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "floralwhite",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "forestgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "fuchsia",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "gainsboro",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ghostwhite",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "gold",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "goldenrod",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "gray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "green",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "greenyellow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "grey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "honeydew",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "hotpink",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "indianred",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "indigo",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ivory",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "khaki",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lavender",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lavenderblush",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lawngreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lemonchiffon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightcoral",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightcyan",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightgoldenrodyellow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightgray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightgrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightpink",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightsalmon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightseagreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightskyblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightslategray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightslategrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightsteelblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightyellow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lime",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "limegreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "linen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "magenta",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "maroon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumaquamarine",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumorchid",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumpurple",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumseagreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumslateblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumspringgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumturquoise",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumvioletred",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "midnightblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mintcream",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mistyrose",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "moccasin",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "navajowhite",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "navy",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "oldlace",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "olive",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "olivedrab",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "orange",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "orangered",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "orchid",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "palegoldenrod",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "palegreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "paleturquoise",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "palevioletred",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "papayawhip",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "peachpuff",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "peru",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "pink",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "plum",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "powderblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "purple",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "rebeccapurple",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "red",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "rosybrown",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "royalblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "saddlebrown",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "salmon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "sandybrown",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "seagreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "seashell",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "sienna",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "silver",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "skyblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "slateblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "slategray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "slategrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "snow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "springgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "steelblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "tan",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "teal",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "thistle",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "tomato",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "turquoise",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "violet",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "wheat",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "white",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "whitesmoke",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "yellow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "yellowgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ActiveBorder",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ActiveCaption",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "AppWorkspace",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Background",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ButtonFace",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ButtonHighlight",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ButtonShadow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ButtonText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "CaptionText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "GrayText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Highlight",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "HighlightText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InactiveBorder",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InactiveCaption",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InactiveCaptionText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InfoBackground",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InfoText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Menu",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "MenuText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Scrollbar",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDDarkShadow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDFace",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDHighlight",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDLightShadow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDShadow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Window",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "WindowFrame",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "WindowText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "currentcolor",
            "type": {
              "names": [
                "string"
              ]
            }
          }
        ],
        "ojvalueskeeporder": true
      },
      {
        "name": "fontSize",
        "description": "The font size of the text.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "fontStyle",
        "description": "The font style of the text.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "fontWeight",
        "description": "The font weight of the text.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "fontFamily",
        "description": "The font family of the label.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      }
    ]
  },
  {
    "id": "oj-c.LineChart.LineAreaItem",
    "name": "LineAreaItem",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.LineAreaItem",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "",
    "tsgenerictype": {
      "target": "Type",
      "value": "<K>",
      "for": "genericTypeParameters"
    },
    "properties": [
      {
        "name": "color",
        "description": "The  color of the bar item.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        },
        "ojvalues": [
          {
            "name": "transparent",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "inherit",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "initial",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "-moz-initial",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "revert",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "revert-layer",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "unset",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "aliceblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "antiquewhite",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "aqua",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "aquamarine",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "azure",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "beige",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "bisque",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "black",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "blanchedalmond",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "blue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "blueviolet",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "brown",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "burlywood",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "cadetblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "chartreuse",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "chocolate",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "coral",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "cornflowerblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "cornsilk",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "crimson",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "cyan",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkcyan",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkgoldenrod",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkgray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkgrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkkhaki",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkmagenta",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkolivegreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkorange",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkorchid",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkred",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darksalmon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkseagreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkslateblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkslategray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkslategrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkturquoise",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkviolet",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "deeppink",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "deepskyblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "dimgray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "dimgrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "dodgerblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "firebrick",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "floralwhite",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "forestgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "fuchsia",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "gainsboro",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ghostwhite",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "gold",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "goldenrod",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "gray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "green",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "greenyellow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "grey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "honeydew",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "hotpink",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "indianred",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "indigo",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ivory",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "khaki",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lavender",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lavenderblush",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lawngreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lemonchiffon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightcoral",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightcyan",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightgoldenrodyellow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightgray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightgrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightpink",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightsalmon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightseagreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightskyblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightslategray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightslategrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightsteelblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightyellow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lime",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "limegreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "linen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "magenta",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "maroon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumaquamarine",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumorchid",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumpurple",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumseagreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumslateblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumspringgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumturquoise",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumvioletred",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "midnightblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mintcream",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mistyrose",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "moccasin",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "navajowhite",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "navy",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "oldlace",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "olive",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "olivedrab",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "orange",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "orangered",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "orchid",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "palegoldenrod",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "palegreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "paleturquoise",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "palevioletred",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "papayawhip",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "peachpuff",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "peru",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "pink",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "plum",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "powderblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "purple",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "rebeccapurple",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "red",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "rosybrown",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "royalblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "saddlebrown",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "salmon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "sandybrown",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "seagreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "seashell",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "sienna",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "silver",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "skyblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "slateblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "slategray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "slategrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "snow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "springgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "steelblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "tan",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "teal",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "thistle",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "tomato",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "turquoise",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "violet",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "wheat",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "white",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "whitesmoke",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "yellow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "yellowgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ActiveBorder",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ActiveCaption",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "AppWorkspace",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Background",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ButtonFace",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ButtonHighlight",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ButtonShadow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ButtonText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "CaptionText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "GrayText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Highlight",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "HighlightText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InactiveBorder",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InactiveCaption",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InactiveCaptionText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InfoBackground",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InfoText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Menu",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "MenuText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Scrollbar",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDDarkShadow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDFace",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDHighlight",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDLightShadow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDShadow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Window",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "WindowFrame",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "WindowText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "currentcolor",
            "type": {
              "names": [
                "string"
              ]
            }
          }
        ],
        "ojvalueskeeporder": true
      },
      {
        "name": "borderColor",
        "description": "The border color of the bar item.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        },
        "ojvalues": [
          {
            "name": "transparent",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "inherit",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "initial",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "-moz-initial",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "revert",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "revert-layer",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "unset",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "aliceblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "antiquewhite",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "aqua",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "aquamarine",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "azure",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "beige",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "bisque",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "black",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "blanchedalmond",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "blue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "blueviolet",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "brown",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "burlywood",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "cadetblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "chartreuse",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "chocolate",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "coral",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "cornflowerblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "cornsilk",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "crimson",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "cyan",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkcyan",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkgoldenrod",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkgray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkgrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkkhaki",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkmagenta",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkolivegreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkorange",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkorchid",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkred",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darksalmon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkseagreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkslateblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkslategray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkslategrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkturquoise",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkviolet",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "deeppink",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "deepskyblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "dimgray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "dimgrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "dodgerblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "firebrick",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "floralwhite",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "forestgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "fuchsia",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "gainsboro",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ghostwhite",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "gold",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "goldenrod",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "gray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "green",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "greenyellow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "grey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "honeydew",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "hotpink",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "indianred",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "indigo",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ivory",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "khaki",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lavender",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lavenderblush",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lawngreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lemonchiffon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightcoral",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightcyan",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightgoldenrodyellow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightgray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightgrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightpink",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightsalmon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightseagreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightskyblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightslategray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightslategrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightsteelblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightyellow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lime",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "limegreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "linen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "magenta",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "maroon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumaquamarine",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumorchid",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumpurple",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumseagreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumslateblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumspringgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumturquoise",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumvioletred",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "midnightblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mintcream",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mistyrose",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "moccasin",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "navajowhite",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "navy",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "oldlace",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "olive",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "olivedrab",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "orange",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "orangered",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "orchid",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "palegoldenrod",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "palegreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "paleturquoise",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "palevioletred",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "papayawhip",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "peachpuff",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "peru",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "pink",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "plum",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "powderblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "purple",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "rebeccapurple",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "red",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "rosybrown",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "royalblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "saddlebrown",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "salmon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "sandybrown",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "seagreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "seashell",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "sienna",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "silver",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "skyblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "slateblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "slategray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "slategrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "snow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "springgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "steelblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "tan",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "teal",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "thistle",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "tomato",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "turquoise",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "violet",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "wheat",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "white",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "whitesmoke",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "yellow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "yellowgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ActiveBorder",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ActiveCaption",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "AppWorkspace",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Background",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ButtonFace",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ButtonHighlight",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ButtonShadow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ButtonText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "CaptionText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "GrayText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Highlight",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "HighlightText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InactiveBorder",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InactiveCaption",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InactiveCaptionText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InfoBackground",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InfoText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Menu",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "MenuText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Scrollbar",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDDarkShadow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDFace",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDHighlight",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDLightShadow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDShadow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Window",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "WindowFrame",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "WindowText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "currentcolor",
            "type": {
              "names": [
                "string"
              ]
            }
          }
        ],
        "ojvalueskeeporder": true
      },
      {
        "name": "accessibleLabel",
        "description": "The label to be used for accessibility purposes.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "label",
        "description": "The data label of the data item.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "labelStyle",
        "description": "The style object defining the style of the data label.  The following style properties are supported: color, fontFamily, fontSize, fontStyle, fontWeight.",
        "optional": true,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "oj-c.LineChart.VisLabelStyle",
            "jsdocOverride": true,
            "for": "labelStyle"
          }
        ]
      },
      {
        "name": "id",
        "description": "The id of the data item.",
        "optional": false,
        "type": {
          "names": [
            "any"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "K",
            "jsdocOverride": true,
            "for": "id"
          }
        ]
      },
      {
        "name": "drilling",
        "description": "Whether the item is drillable or not.",
        "optional": true,
        "type": {
          "names": [
            "\"off\"",
            "\"inherit\"",
            "\"on\""
          ]
        }
      },
      {
        "name": "isMarkerDisplayed",
        "description": "Whether a marker is displayed for the data item. Defaults to false.",
        "optional": true,
        "type": {
          "names": [
            "boolean"
          ]
        }
      },
      {
        "name": "markerColor",
        "description": "The color of the marker for the data item. If not specified, chart will choose the marker color based on the series.\nAll data items belonging to a particular series will have the same marker color.",
        "optional": true,
        "type": {
          "names": [
            "\"transparent\"|\"inherit\"|\"initial\"|\"-moz-initial\"|\"revert\"|\"revert-layer\"|\"unset\"|\"aliceblue\"|\"antiquewhite\"|\"aqua\"|\"aquamarine\"|\"azure\"|\"beige\"|\"bisque\"|\"black\"|\"blanchedalmond\"|\"blue\"|\"blueviolet\"|\"brown\"|\"burlywood\"|\"cadetblue\"|\"chartreuse\"|\"chocolate\"|\"coral\"|\"cornflowerblue\"|\"cornsilk\"|\"crimson\"|\"cyan\"|\"darkblue\"|\"darkcyan\"|\"darkgoldenrod\"|\"darkgray\"|\"darkgreen\"|\"darkgrey\"|\"darkkhaki\"|\"darkmagenta\"|\"darkolivegreen\"|\"darkorange\"|\"darkorchid\"|\"darkred\"|\"darksalmon\"|\"darkseagreen\"|\"darkslateblue\"|\"darkslategray\"|\"darkslategrey\"|\"darkturquoise\"|\"darkviolet\"|\"deeppink\"|\"deepskyblue\"|\"dimgray\"|\"dimgrey\"|\"dodgerblue\"|\"firebrick\"|\"floralwhite\"|\"forestgreen\"|\"fuchsia\"|\"gainsboro\"|\"ghostwhite\"|\"gold\"|\"goldenrod\"|\"gray\"|\"green\"|\"greenyellow\"|\"grey\"|\"honeydew\"|\"hotpink\"|\"indianred\"|\"indigo\"|\"ivory\"|\"khaki\"|\"lavender\"|\"lavenderblush\"|\"lawngreen\"|\"lemonchiffon\"|\"lightblue\"|\"lightcoral\"|\"lightcyan\"|\"lightgoldenrodyellow\"|\"lightgray\"|\"lightgreen\"|\"lightgrey\"|\"lightpink\"|\"lightsalmon\"|\"lightseagreen\"|\"lightskyblue\"|\"lightslategray\"|\"lightslategrey\"|\"lightsteelblue\"|\"lightyellow\"|\"lime\"|\"limegreen\"|\"linen\"|\"magenta\"|\"maroon\"|\"mediumaquamarine\"|\"mediumblue\"|\"mediumorchid\"|\"mediumpurple\"|\"mediumseagreen\"|\"mediumslateblue\"|\"mediumspringgreen\"|\"mediumturquoise\"|\"mediumvioletred\"|\"midnightblue\"|\"mintcream\"|\"mistyrose\"|\"moccasin\"|\"navajowhite\"|\"navy\"|\"oldlace\"|\"olive\"|\"olivedrab\"|\"orange\"|\"orangered\"|\"orchid\"|\"palegoldenrod\"|\"palegreen\"|\"paleturquoise\"|\"palevioletred\"|\"papayawhip\"|\"peachpuff\"|\"peru\"|\"pink\"|\"plum\"|\"powderblue\"|\"purple\"|\"rebeccapurple\"|\"red\"|\"rosybrown\"|\"royalblue\"|\"saddlebrown\"|\"salmon\"|\"sandybrown\"|\"seagreen\"|\"seashell\"|\"sienna\"|\"silver\"|\"skyblue\"|\"slateblue\"|\"slategray\"|\"slategrey\"|\"snow\"|\"springgreen\"|\"steelblue\"|\"tan\"|\"teal\"|\"thistle\"|\"tomato\"|\"turquoise\"|\"violet\"|\"wheat\"|\"white\"|\"whitesmoke\"|\"yellow\"|\"yellowgreen\"|\"ActiveBorder\"|\"ActiveCaption\"|\"AppWorkspace\"|\"Background\"|\"ButtonFace\"|\"ButtonHighlight\"|\"ButtonShadow\"|\"ButtonText\"|\"CaptionText\"|\"GrayText\"|\"Highlight\"|\"HighlightText\"|\"InactiveBorder\"|\"InactiveCaption\"|\"InactiveCaptionText\"|\"InfoBackground\"|\"InfoText\"|\"Menu\"|\"MenuText\"|\"Scrollbar\"|\"ThreeDDarkShadow\"|\"ThreeDFace\"|\"ThreeDHighlight\"|\"ThreeDLightShadow\"|\"ThreeDShadow\"|\"Window\"|\"WindowFrame\"|\"WindowText\"|\"currentcolor\"|string"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "\"transparent\"|\"inherit\"|\"initial\"|\"-moz-initial\"|\"revert\"|\"revert-layer\"|\"unset\"|\"aliceblue\"|\"antiquewhite\"|\"aqua\"|\"aquamarine\"|\"azure\"|\"beige\"|\"bisque\"|\"black\"|\"blanchedalmond\"|\"blue\"|\"blueviolet\"|\"brown\"|\"burlywood\"|\"cadetblue\"|\"chartreuse\"|\"chocolate\"|\"coral\"|\"cornflowerblue\"|\"cornsilk\"|\"crimson\"|\"cyan\"|\"darkblue\"|\"darkcyan\"|\"darkgoldenrod\"|\"darkgray\"|\"darkgreen\"|\"darkgrey\"|\"darkkhaki\"|\"darkmagenta\"|\"darkolivegreen\"|\"darkorange\"|\"darkorchid\"|\"darkred\"|\"darksalmon\"|\"darkseagreen\"|\"darkslateblue\"|\"darkslategray\"|\"darkslategrey\"|\"darkturquoise\"|\"darkviolet\"|\"deeppink\"|\"deepskyblue\"|\"dimgray\"|\"dimgrey\"|\"dodgerblue\"|\"firebrick\"|\"floralwhite\"|\"forestgreen\"|\"fuchsia\"|\"gainsboro\"|\"ghostwhite\"|\"gold\"|\"goldenrod\"|\"gray\"|\"green\"|\"greenyellow\"|\"grey\"|\"honeydew\"|\"hotpink\"|\"indianred\"|\"indigo\"|\"ivory\"|\"khaki\"|\"lavender\"|\"lavenderblush\"|\"lawngreen\"|\"lemonchiffon\"|\"lightblue\"|\"lightcoral\"|\"lightcyan\"|\"lightgoldenrodyellow\"|\"lightgray\"|\"lightgreen\"|\"lightgrey\"|\"lightpink\"|\"lightsalmon\"|\"lightseagreen\"|\"lightskyblue\"|\"lightslategray\"|\"lightslategrey\"|\"lightsteelblue\"|\"lightyellow\"|\"lime\"|\"limegreen\"|\"linen\"|\"magenta\"|\"maroon\"|\"mediumaquamarine\"|\"mediumblue\"|\"mediumorchid\"|\"mediumpurple\"|\"mediumseagreen\"|\"mediumslateblue\"|\"mediumspringgreen\"|\"mediumturquoise\"|\"mediumvioletred\"|\"midnightblue\"|\"mintcream\"|\"mistyrose\"|\"moccasin\"|\"navajowhite\"|\"navy\"|\"oldlace\"|\"olive\"|\"olivedrab\"|\"orange\"|\"orangered\"|\"orchid\"|\"palegoldenrod\"|\"palegreen\"|\"paleturquoise\"|\"palevioletred\"|\"papayawhip\"|\"peachpuff\"|\"peru\"|\"pink\"|\"plum\"|\"powderblue\"|\"purple\"|\"rebeccapurple\"|\"red\"|\"rosybrown\"|\"royalblue\"|\"saddlebrown\"|\"salmon\"|\"sandybrown\"|\"seagreen\"|\"seashell\"|\"sienna\"|\"silver\"|\"skyblue\"|\"slateblue\"|\"slategray\"|\"slategrey\"|\"snow\"|\"springgreen\"|\"steelblue\"|\"tan\"|\"teal\"|\"thistle\"|\"tomato\"|\"turquoise\"|\"violet\"|\"wheat\"|\"white\"|\"whitesmoke\"|\"yellow\"|\"yellowgreen\"|\"ActiveBorder\"|\"ActiveCaption\"|\"AppWorkspace\"|\"Background\"|\"ButtonFace\"|\"ButtonHighlight\"|\"ButtonShadow\"|\"ButtonText\"|\"CaptionText\"|\"GrayText\"|\"Highlight\"|\"HighlightText\"|\"InactiveBorder\"|\"InactiveCaption\"|\"InactiveCaptionText\"|\"InfoBackground\"|\"InfoText\"|\"Menu\"|\"MenuText\"|\"Scrollbar\"|\"ThreeDDarkShadow\"|\"ThreeDFace\"|\"ThreeDHighlight\"|\"ThreeDLightShadow\"|\"ThreeDShadow\"|\"Window\"|\"WindowFrame\"|\"WindowText\"|\"currentcolor\"|string",
            "jsdocOverride": true
          }
        ],
        "ojvalues": [
          {
            "name": "transparent",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "inherit",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "initial",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "-moz-initial",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "revert",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "revert-layer",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "unset",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "aliceblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "antiquewhite",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "aqua",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "aquamarine",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "azure",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "beige",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "bisque",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "black",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "blanchedalmond",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "blue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "blueviolet",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "brown",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "burlywood",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "cadetblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "chartreuse",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "chocolate",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "coral",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "cornflowerblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "cornsilk",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "crimson",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "cyan",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkcyan",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkgoldenrod",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkgray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkgrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkkhaki",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkmagenta",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkolivegreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkorange",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkorchid",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkred",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darksalmon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkseagreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkslateblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkslategray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkslategrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkturquoise",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkviolet",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "deeppink",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "deepskyblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "dimgray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "dimgrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "dodgerblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "firebrick",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "floralwhite",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "forestgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "fuchsia",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "gainsboro",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ghostwhite",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "gold",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "goldenrod",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "gray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "green",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "greenyellow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "grey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "honeydew",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "hotpink",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "indianred",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "indigo",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ivory",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "khaki",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lavender",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lavenderblush",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lawngreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lemonchiffon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightcoral",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightcyan",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightgoldenrodyellow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightgray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightgrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightpink",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightsalmon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightseagreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightskyblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightslategray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightslategrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightsteelblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightyellow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lime",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "limegreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "linen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "magenta",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "maroon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumaquamarine",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumorchid",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumpurple",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumseagreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumslateblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumspringgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumturquoise",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumvioletred",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "midnightblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mintcream",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mistyrose",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "moccasin",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "navajowhite",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "navy",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "oldlace",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "olive",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "olivedrab",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "orange",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "orangered",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "orchid",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "palegoldenrod",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "palegreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "paleturquoise",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "palevioletred",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "papayawhip",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "peachpuff",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "peru",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "pink",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "plum",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "powderblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "purple",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "rebeccapurple",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "red",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "rosybrown",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "royalblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "saddlebrown",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "salmon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "sandybrown",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "seagreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "seashell",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "sienna",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "silver",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "skyblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "slateblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "slategray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "slategrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "snow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "springgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "steelblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "tan",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "teal",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "thistle",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "tomato",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "turquoise",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "violet",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "wheat",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "white",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "whitesmoke",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "yellow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "yellowgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ActiveBorder",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ActiveCaption",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "AppWorkspace",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Background",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ButtonFace",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ButtonHighlight",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ButtonShadow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ButtonText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "CaptionText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "GrayText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Highlight",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "HighlightText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InactiveBorder",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InactiveCaption",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InactiveCaptionText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InfoBackground",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InfoText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Menu",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "MenuText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Scrollbar",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDDarkShadow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDFace",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDHighlight",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDLightShadow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDShadow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Window",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "WindowFrame",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "WindowText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "currentcolor",
            "type": {
              "names": [
                "string"
              ]
            }
          }
        ],
        "ojvalueskeeporder": true
      },
      {
        "name": "markerType",
        "description": "The shape of the marker for the data item. If not specified, chart will choose the marker shape based on the series.\nAll data items belonging to a particular series will have same marker shape.",
        "optional": true,
        "type": {
          "names": [
            "\"square\"",
            "\"circle\"",
            "\"ellipse\"",
            "\"diamond\"",
            "\"human\"",
            "\"plus\"",
            "\"star\"",
            "\"triangleDown\"",
            "\"triangleUp\"",
            "\"rectangle\""
          ]
        }
      },
      {
        "name": "markerSize",
        "description": "The size of the marker for the data item. If not specified, theme specific default is used.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        }
      },
      {
        "name": "labelPosition",
        "description": "The position of the data label.",
        "optional": true,
        "type": {
          "names": [
            "\"center\"",
            "\"belowMarker\"",
            "\"aboveMarker\"",
            "\"beforeMarker\"",
            "\"afterMarker\""
          ]
        }
      },
      {
        "name": "value",
        "description": "The value of the data item. If undefined data item will not be rendered.",
        "optional": false,
        "type": {
          "names": [
            "number"
          ]
        }
      },
      {
        "name": "x",
        "description": "The x value of the data item.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      }
    ]
  },
  {
    "id": "oj-c.LineChart.DatatipTemplateContext",
    "name": "DatatipTemplateContext",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.DatatipTemplateContext",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "The datatipTemplate slot is used to specify custom datatip content.",
    "tsgenerictype": {
      "target": "Type",
      "value": "<K,D>",
      "for": "genericTypeParameters"
    },
    "properties": [
      {
        "name": "color",
        "description": "The color of the item.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "data",
        "description": "The data object of the item. For nested items, it will be an array containing the parent item data and nested item data.",
        "optional": true,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "oj-c.LineChart.ReferenceLineData|oj-c.LineChart.ReferenceAreaData|oj-c.LineChart.LineAreaItem<K>",
            "jsdocOverride": true,
            "for": "data"
          }
        ]
      },
      {
        "name": "group",
        "description": "The ids or an array of ids of the group(s) the item belongs to. For hierarchical groups, it will be an array of outermost to innermost group ids.",
        "optional": true,
        "type": {
          "names": [
            "string|Array<string>"
          ]
        }
      },
      {
        "name": "groupData",
        "description": "An array of data for the group the item belongs to. For hierarchical groups, it will be an array of outermost to innermost group data related to the item.",
        "optional": true,
        "type": {
          "names": [
            "Array<object>"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "Array<oj-c.LineChart.Group>",
            "jsdocOverride": true,
            "for": "groupData"
          }
        ]
      },
      {
        "name": "id",
        "description": "The id of the item.",
        "optional": false,
        "type": {
          "names": [
            "any"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "string|K",
            "jsdocOverride": true,
            "for": "id"
          }
        ]
      },
      {
        "name": "itemData",
        "description": "The row data object for the item. This will only be set if a DataProvider is being used.",
        "optional": true,
        "type": {
          "names": [
            "any"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "D",
            "jsdocOverride": true,
            "for": "itemData"
          }
        ]
      },
      {
        "name": "label",
        "description": "The data label of the item.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "series",
        "description": "The id of the series the item belongs to.",
        "optional": true,
        "type": {
          "names": [
            "string"
          ]
        }
      },
      {
        "name": "seriesData",
        "description": "The data for the series the item belongs to.",
        "optional": true,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "oj-c.LineChart.LineChartSeries<K>",
            "jsdocOverride": true,
            "for": "seriesData"
          }
        ]
      },
      {
        "name": "value",
        "description": "The value of the item.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        }
      },
      {
        "name": "high",
        "description": "The high value of the item.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        }
      },
      {
        "name": "low",
        "description": "The high value of the hovered item.",
        "optional": true,
        "type": {
          "names": [
            "number"
          ]
        }
      }
    ]
  },
  {
    "id": "oj-c.LineChart.DatatipStyle",
    "name": "DatatipStyle",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.DatatipStyle",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "The DatatipStyle is used to specify datatip border color.",
    "properties": [
      {
        "name": "borderColor",
        "optional": false,
        "type": {
          "names": [
            "\"transparent\"|\"inherit\"|\"initial\"|\"-moz-initial\"|\"revert\"|\"revert-layer\"|\"unset\"|\"aliceblue\"|\"antiquewhite\"|\"aqua\"|\"aquamarine\"|\"azure\"|\"beige\"|\"bisque\"|\"black\"|\"blanchedalmond\"|\"blue\"|\"blueviolet\"|\"brown\"|\"burlywood\"|\"cadetblue\"|\"chartreuse\"|\"chocolate\"|\"coral\"|\"cornflowerblue\"|\"cornsilk\"|\"crimson\"|\"cyan\"|\"darkblue\"|\"darkcyan\"|\"darkgoldenrod\"|\"darkgray\"|\"darkgreen\"|\"darkgrey\"|\"darkkhaki\"|\"darkmagenta\"|\"darkolivegreen\"|\"darkorange\"|\"darkorchid\"|\"darkred\"|\"darksalmon\"|\"darkseagreen\"|\"darkslateblue\"|\"darkslategray\"|\"darkslategrey\"|\"darkturquoise\"|\"darkviolet\"|\"deeppink\"|\"deepskyblue\"|\"dimgray\"|\"dimgrey\"|\"dodgerblue\"|\"firebrick\"|\"floralwhite\"|\"forestgreen\"|\"fuchsia\"|\"gainsboro\"|\"ghostwhite\"|\"gold\"|\"goldenrod\"|\"gray\"|\"green\"|\"greenyellow\"|\"grey\"|\"honeydew\"|\"hotpink\"|\"indianred\"|\"indigo\"|\"ivory\"|\"khaki\"|\"lavender\"|\"lavenderblush\"|\"lawngreen\"|\"lemonchiffon\"|\"lightblue\"|\"lightcoral\"|\"lightcyan\"|\"lightgoldenrodyellow\"|\"lightgray\"|\"lightgreen\"|\"lightgrey\"|\"lightpink\"|\"lightsalmon\"|\"lightseagreen\"|\"lightskyblue\"|\"lightslategray\"|\"lightslategrey\"|\"lightsteelblue\"|\"lightyellow\"|\"lime\"|\"limegreen\"|\"linen\"|\"magenta\"|\"maroon\"|\"mediumaquamarine\"|\"mediumblue\"|\"mediumorchid\"|\"mediumpurple\"|\"mediumseagreen\"|\"mediumslateblue\"|\"mediumspringgreen\"|\"mediumturquoise\"|\"mediumvioletred\"|\"midnightblue\"|\"mintcream\"|\"mistyrose\"|\"moccasin\"|\"navajowhite\"|\"navy\"|\"oldlace\"|\"olive\"|\"olivedrab\"|\"orange\"|\"orangered\"|\"orchid\"|\"palegoldenrod\"|\"palegreen\"|\"paleturquoise\"|\"palevioletred\"|\"papayawhip\"|\"peachpuff\"|\"peru\"|\"pink\"|\"plum\"|\"powderblue\"|\"purple\"|\"rebeccapurple\"|\"red\"|\"rosybrown\"|\"royalblue\"|\"saddlebrown\"|\"salmon\"|\"sandybrown\"|\"seagreen\"|\"seashell\"|\"sienna\"|\"silver\"|\"skyblue\"|\"slateblue\"|\"slategray\"|\"slategrey\"|\"snow\"|\"springgreen\"|\"steelblue\"|\"tan\"|\"teal\"|\"thistle\"|\"tomato\"|\"turquoise\"|\"violet\"|\"wheat\"|\"white\"|\"whitesmoke\"|\"yellow\"|\"yellowgreen\"|\"ActiveBorder\"|\"ActiveCaption\"|\"AppWorkspace\"|\"Background\"|\"ButtonFace\"|\"ButtonHighlight\"|\"ButtonShadow\"|\"ButtonText\"|\"CaptionText\"|\"GrayText\"|\"Highlight\"|\"HighlightText\"|\"InactiveBorder\"|\"InactiveCaption\"|\"InactiveCaptionText\"|\"InfoBackground\"|\"InfoText\"|\"Menu\"|\"MenuText\"|\"Scrollbar\"|\"ThreeDDarkShadow\"|\"ThreeDFace\"|\"ThreeDHighlight\"|\"ThreeDLightShadow\"|\"ThreeDShadow\"|\"Window\"|\"WindowFrame\"|\"WindowText\"|\"currentcolor\"|string"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "\"transparent\"|\"inherit\"|\"initial\"|\"-moz-initial\"|\"revert\"|\"revert-layer\"|\"unset\"|\"aliceblue\"|\"antiquewhite\"|\"aqua\"|\"aquamarine\"|\"azure\"|\"beige\"|\"bisque\"|\"black\"|\"blanchedalmond\"|\"blue\"|\"blueviolet\"|\"brown\"|\"burlywood\"|\"cadetblue\"|\"chartreuse\"|\"chocolate\"|\"coral\"|\"cornflowerblue\"|\"cornsilk\"|\"crimson\"|\"cyan\"|\"darkblue\"|\"darkcyan\"|\"darkgoldenrod\"|\"darkgray\"|\"darkgreen\"|\"darkgrey\"|\"darkkhaki\"|\"darkmagenta\"|\"darkolivegreen\"|\"darkorange\"|\"darkorchid\"|\"darkred\"|\"darksalmon\"|\"darkseagreen\"|\"darkslateblue\"|\"darkslategray\"|\"darkslategrey\"|\"darkturquoise\"|\"darkviolet\"|\"deeppink\"|\"deepskyblue\"|\"dimgray\"|\"dimgrey\"|\"dodgerblue\"|\"firebrick\"|\"floralwhite\"|\"forestgreen\"|\"fuchsia\"|\"gainsboro\"|\"ghostwhite\"|\"gold\"|\"goldenrod\"|\"gray\"|\"green\"|\"greenyellow\"|\"grey\"|\"honeydew\"|\"hotpink\"|\"indianred\"|\"indigo\"|\"ivory\"|\"khaki\"|\"lavender\"|\"lavenderblush\"|\"lawngreen\"|\"lemonchiffon\"|\"lightblue\"|\"lightcoral\"|\"lightcyan\"|\"lightgoldenrodyellow\"|\"lightgray\"|\"lightgreen\"|\"lightgrey\"|\"lightpink\"|\"lightsalmon\"|\"lightseagreen\"|\"lightskyblue\"|\"lightslategray\"|\"lightslategrey\"|\"lightsteelblue\"|\"lightyellow\"|\"lime\"|\"limegreen\"|\"linen\"|\"magenta\"|\"maroon\"|\"mediumaquamarine\"|\"mediumblue\"|\"mediumorchid\"|\"mediumpurple\"|\"mediumseagreen\"|\"mediumslateblue\"|\"mediumspringgreen\"|\"mediumturquoise\"|\"mediumvioletred\"|\"midnightblue\"|\"mintcream\"|\"mistyrose\"|\"moccasin\"|\"navajowhite\"|\"navy\"|\"oldlace\"|\"olive\"|\"olivedrab\"|\"orange\"|\"orangered\"|\"orchid\"|\"palegoldenrod\"|\"palegreen\"|\"paleturquoise\"|\"palevioletred\"|\"papayawhip\"|\"peachpuff\"|\"peru\"|\"pink\"|\"plum\"|\"powderblue\"|\"purple\"|\"rebeccapurple\"|\"red\"|\"rosybrown\"|\"royalblue\"|\"saddlebrown\"|\"salmon\"|\"sandybrown\"|\"seagreen\"|\"seashell\"|\"sienna\"|\"silver\"|\"skyblue\"|\"slateblue\"|\"slategray\"|\"slategrey\"|\"snow\"|\"springgreen\"|\"steelblue\"|\"tan\"|\"teal\"|\"thistle\"|\"tomato\"|\"turquoise\"|\"violet\"|\"wheat\"|\"white\"|\"whitesmoke\"|\"yellow\"|\"yellowgreen\"|\"ActiveBorder\"|\"ActiveCaption\"|\"AppWorkspace\"|\"Background\"|\"ButtonFace\"|\"ButtonHighlight\"|\"ButtonShadow\"|\"ButtonText\"|\"CaptionText\"|\"GrayText\"|\"Highlight\"|\"HighlightText\"|\"InactiveBorder\"|\"InactiveCaption\"|\"InactiveCaptionText\"|\"InfoBackground\"|\"InfoText\"|\"Menu\"|\"MenuText\"|\"Scrollbar\"|\"ThreeDDarkShadow\"|\"ThreeDFace\"|\"ThreeDHighlight\"|\"ThreeDLightShadow\"|\"ThreeDShadow\"|\"Window\"|\"WindowFrame\"|\"WindowText\"|\"currentcolor\"|string",
            "jsdocOverride": true
          }
        ],
        "ojvalues": [
          {
            "name": "transparent",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "inherit",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "initial",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "-moz-initial",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "revert",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "revert-layer",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "unset",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "aliceblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "antiquewhite",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "aqua",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "aquamarine",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "azure",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "beige",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "bisque",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "black",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "blanchedalmond",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "blue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "blueviolet",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "brown",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "burlywood",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "cadetblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "chartreuse",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "chocolate",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "coral",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "cornflowerblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "cornsilk",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "crimson",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "cyan",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkcyan",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkgoldenrod",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkgray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkgrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkkhaki",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkmagenta",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkolivegreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkorange",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkorchid",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkred",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darksalmon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkseagreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkslateblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkslategray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkslategrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkturquoise",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "darkviolet",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "deeppink",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "deepskyblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "dimgray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "dimgrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "dodgerblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "firebrick",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "floralwhite",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "forestgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "fuchsia",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "gainsboro",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ghostwhite",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "gold",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "goldenrod",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "gray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "green",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "greenyellow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "grey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "honeydew",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "hotpink",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "indianred",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "indigo",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ivory",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "khaki",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lavender",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lavenderblush",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lawngreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lemonchiffon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightcoral",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightcyan",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightgoldenrodyellow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightgray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightgrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightpink",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightsalmon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightseagreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightskyblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightslategray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightslategrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightsteelblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lightyellow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "lime",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "limegreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "linen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "magenta",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "maroon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumaquamarine",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumorchid",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumpurple",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumseagreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumslateblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumspringgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumturquoise",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mediumvioletred",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "midnightblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mintcream",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "mistyrose",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "moccasin",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "navajowhite",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "navy",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "oldlace",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "olive",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "olivedrab",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "orange",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "orangered",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "orchid",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "palegoldenrod",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "palegreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "paleturquoise",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "palevioletred",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "papayawhip",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "peachpuff",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "peru",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "pink",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "plum",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "powderblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "purple",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "rebeccapurple",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "red",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "rosybrown",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "royalblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "saddlebrown",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "salmon",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "sandybrown",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "seagreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "seashell",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "sienna",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "silver",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "skyblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "slateblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "slategray",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "slategrey",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "snow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "springgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "steelblue",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "tan",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "teal",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "thistle",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "tomato",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "turquoise",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "violet",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "wheat",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "white",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "whitesmoke",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "yellow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "yellowgreen",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ActiveBorder",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ActiveCaption",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "AppWorkspace",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Background",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ButtonFace",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ButtonHighlight",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ButtonShadow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ButtonText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "CaptionText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "GrayText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Highlight",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "HighlightText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InactiveBorder",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InactiveCaption",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InactiveCaptionText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InfoBackground",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "InfoText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Menu",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "MenuText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Scrollbar",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDDarkShadow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDFace",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDHighlight",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDLightShadow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "ThreeDShadow",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "Window",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "WindowFrame",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "WindowText",
            "type": {
              "names": [
                "string"
              ]
            }
          },
          {
            "name": "currentcolor",
            "type": {
              "names": [
                "string"
              ]
            }
          }
        ],
        "ojvalueskeeporder": true
      }
    ]
  },
  {
    "id": "oj-c.LineChart.DatatipConfig",
    "name": "DatatipConfig",
    "kind": "typedef",
    "memberof": "oj-c.LineChart",
    "meta": {
      "filename": "line-chart.tsx",
      "path": "web/components/oj-c/line-chart"
    },
    "longname": "oj-c.LineChart.DatatipConfig",
    "type": {
      "names": [
        "Object"
      ]
    },
    "scope": "static",
    "description": "The DatatipConfig object is used to allow applications to control the appearance and behavior of the datatip.",
    "properties": [
      {
        "name": "defaultContainer",
        "description": "Defines if the datatip container is visually shown. For applications requiring full control over the datatip's appearance, the defaultContainer should be set to \"disabled\". In this mode, the content provided by the datatipTemplate slot takes up the whole datatip. This only applies if a datatipTemplate slot is used.",
        "optional": false,
        "type": {
          "names": [
            "\"disabled\"",
            "\"enabled\""
          ]
        }
      },
      {
        "name": "style",
        "description": "Defines the style of the datatip container.",
        "optional": true,
        "type": {
          "names": [
            "object"
          ]
        },
        "tstype": [
          {
            "target": "Type",
            "value": "oj-c.LineChart.DatatipStyle",
            "jsdocOverride": true,
            "for": "style"
          }
        ]
      },
      {
        "name": "rendered",
        "description": "Defines if the datatip is rendered.",
        "optional": true,
        "type": {
          "names": [
            "\"off\"",
            "\"on\""
          ]
        }
      }
    ]
  }
]