The cells.findByPixels() method finds Scheduler cells by their pixel coordinates.
DayPilot.Scheduler.cells.findByPixels(x, y)x (number) - horizontal pixel position, starting at 0 in the upper-left corner
y (number) - vertical pixel position, starting at 0 in the upper-left corner
Returns an array of matching cells. The returned collection exposes helper methods that modify all cells in the array:
addClass(className) - adds a CSS class to all matched cells
removeClass(className) - removes a CSS class from all matched cells
html(string) - sets the HTML content of all matched cells
dp.cells.findByPixels(320, 200).html("test");