public override IGGridViewCell CreateCell(IGGridView grid, IGCellPath path)
            {
                IGGridViewCell cell = (IGGridViewCell)grid.DequeueReusableCell("Cell");

                if (cell == null)
                {
                    cell = new IGGridViewCell("Cell");
                }

                var item = _rates[path.RowIndex];

                cell.TextLabel.Text = path.ColumnIndex == 0 ? item.Item1.ToString("yyyy") : item.Item2.ToString("P2");

                return(cell);
            }