private YearMonth PointToYearMonth(double point) { var monthNumber = (int)(point / _pointsInMonth); return(_firstDate.AddMonth(monthNumber)); }