hi,
We have created Custom columns dynamically using DataTemplate but not able to scroll on Coulmn Header section(Horizontally), please find below code -
HeaderTemplate=SetheaderTemplate();
private DataTemplate SetheaderTemplate()
{
return new DataTemplate(() =>
{
Label titleLabel=new Label();
titleLabel.Text="XYZ";
return titleLabel;
});
}