Display more than 100 data points on X axis in high chart

Hi, I have a table with 106 data points that I am displaying on the X axis of a line chart. However, only the first 100 data points of this series are visible on my high chart and the remaining 6 are just not shown.

The data points that I would like to visualize on the X axis have a string type and contain ISO dates in format yyyy-mm-dd

Is there any way to increase this limit beyond 100, or is it hardcoded in the highChart element?

Hi DanyEle
The pagination property on either datasource and/or element defaults to a pagination of 100. If you want to changes this you have to either on datasource or on element level explictly define how much data points (rows) you want to retreive.

 "pagination": {
        "type": "offset",
        "page": 1,
        "size": 100,
        "totalPages": false
      },

You can find more about in the Apps Docu about it
https://[YOUR_INSTANCE].onedata.de/apps/apps-docs/odml-documentation/AppBuilder/datasources/Datasources.html

1 Like

Thank you, managed to solve it by setting the the pagination property in the chart element with a size of 150:


{
  "id": "ele_highchart_element",
  "type": "highcharts",
  "source": "data_source",
  "sourceOptions": {
    "pagination": {
      "type": "offset",
      "page": 1,
      "size": 150,
      "totalPages": false
    }
  }
.
.
.