var plotAreaPanel = sender as ClipPanel;
var mousePosition = e.GetPosition(plotAreaPanel);
var dataAtMouse = _Chart.DefaultView.ChartArea.AxisX.ConvertPhysicalUnitsToData(mousePosition.X);
var physicalAtMouse = _Chart.DefaultView.ChartArea.AxisX.ConvertDataUnitsToPhysical(dataAtMouse);
if (mousePosition.X != physicalAtMouse)
{
Debug.Assert(false, "Should never happen");
}
Hello
I generate columns on the fly and give cell template and cell edit template.
After I changed value in the cell edit the grid generate default cells for row
Instead of my cell template.
I click on the cell edit and go out it generate my cell template.
Is this known problem?
Best Regards
Ehud