/// Sample linear data type. class ChartAxis { final int xAxis; final int yAxis; ChartAxis(this.xAxis, this.yAxis); }