Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/Views/GrassCoverErosionInwardsChartDataFactory.cs =================================================================== diff -u -re0868fe8d1c342d98fcb16a0273353fcf697d1c0 -rf9aefa56762ac1dd731bc4bfed955d651781d598 --- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/Views/GrassCoverErosionInwardsChartDataFactory.cs (.../GrassCoverErosionInwardsChartDataFactory.cs) (revision e0868fe8d1c342d98fcb16a0273353fcf697d1c0) +++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/Views/GrassCoverErosionInwardsChartDataFactory.cs (.../GrassCoverErosionInwardsChartDataFactory.cs) (revision f9aefa56762ac1dd731bc4bfed955d651781d598) @@ -40,7 +40,7 @@ public static class GrassCoverErosionInwardsChartDataFactory { /// - /// Create with default styling based on the . + /// Create with default styling for the . /// /// The geometry of the for which to create /// . @@ -55,14 +55,17 @@ throw new ArgumentNullException("dikeGeometry"); } - return new ChartLineData(dikeGeometry.Select(dg => dg.Point), string.Format(Resources.GrassCoverErosionInwardsChartDataFactory_Create_Name_format, Resources.DikeProfile_DisplayName, name)) + return new ChartLineData(dikeGeometry.Select(dg => dg.Point), + string.Format(Resources.GrassCoverErosionInwardsChartDataFactory_Create_DatatTypeDisplayName_0_DataIdentifier_1_, + Resources.DikeProfile_DisplayName, + name)) { Style = new ChartLineStyle(Color.SaddleBrown, 2, DashStyle.Solid) }; } /// - /// Create with default styling based on the . + /// Create with default styling for the . /// /// The forshore geometry of the /// for which to create . @@ -77,19 +80,22 @@ throw new ArgumentNullException("foreshoreGeometry"); } - return new ChartLineData(foreshoreGeometry, string.Format(Resources.GrassCoverErosionInwardsChartDataFactory_Create_Name_format, Resources.Foreshore_DisplayName, name)) + return new ChartLineData(foreshoreGeometry, + string.Format(Resources.GrassCoverErosionInwardsChartDataFactory_Create_DatatTypeDisplayName_0_DataIdentifier_1_, + Resources.Foreshore_DisplayName, + name)) { Style = new ChartLineStyle(Color.DarkOrange, 2, DashStyle.Solid) }; } /// - /// Create with default styling based on the . + /// Create with default styling for the . /// /// The dike height of the for which /// to create . - /// The geometry of the to place the - /// on. + /// The geometry of the to determine + /// the position of the marker. /// The name of the . /// based on the . /// Thrown when is NaN. @@ -107,7 +113,10 @@ throw new ArgumentNullException("dikeGeometry"); } - return new ChartLineData(CreateDikeHeightData(dikeHeight, dikeGeometry), string.Format(Resources.GrassCoverErosionInwardsChartDataFactory_Create_Name_format, Resources.DikeHeight_ChartName, name)) + return new ChartLineData(CreateDikeHeightData(dikeHeight, dikeGeometry), + string.Format(Resources.GrassCoverErosionInwardsChartDataFactory_Create_DatatTypeDisplayName_0_DataIdentifier_1_, + Resources.DikeHeight_ChartName, + name)) { Style = new ChartLineStyle(Color.MediumSeaGreen, 2, DashStyle.Dash) };