Package com.arbergashi.charts.model


package com.arbergashi.charts.model
Data model layer of the ArberCharts framework.

Models expose chart data in a renderer-friendly form. The primary design goals are:

  • Performance: prefer primitive arrays and predictable iteration to minimize GC pressure.
  • Flexibility: support standard XY series, financial OHLC, medical signals, and multi-dimensional data.
  • Contracts: renderers must iterate by ChartModel.getPointCount(), not by array length.