Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/Views/GrassCoverErosionInwardsChartDataFactory.cs =================================================================== diff -u -rf9aefa56762ac1dd731bc4bfed955d651781d598 -r4e9f27f907fa0cc1b78d41d0caba53b359d4c99c --- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/Views/GrassCoverErosionInwardsChartDataFactory.cs (.../GrassCoverErosionInwardsChartDataFactory.cs) (revision f9aefa56762ac1dd731bc4bfed955d651781d598) +++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/Views/GrassCoverErosionInwardsChartDataFactory.cs (.../GrassCoverErosionInwardsChartDataFactory.cs) (revision 4e9f27f907fa0cc1b78d41d0caba53b359d4c99c) @@ -56,9 +56,9 @@ } return new ChartLineData(dikeGeometry.Select(dg => dg.Point), - string.Format(Resources.GrassCoverErosionInwardsChartDataFactory_Create_DatatTypeDisplayName_0_DataIdentifier_1_, - Resources.DikeProfile_DisplayName, - name)) + string.Format(Resources.GrassCoverErosionInwardsChartDataFactory_Create_DataIdentifier_0_DataTypeDisplayName_1_, + name, + Resources.DikeProfile_DisplayName)) { Style = new ChartLineStyle(Color.SaddleBrown, 2, DashStyle.Solid) }; @@ -81,9 +81,9 @@ } return new ChartLineData(foreshoreGeometry, - string.Format(Resources.GrassCoverErosionInwardsChartDataFactory_Create_DatatTypeDisplayName_0_DataIdentifier_1_, - Resources.Foreshore_DisplayName, - name)) + string.Format(Resources.GrassCoverErosionInwardsChartDataFactory_Create_DataIdentifier_0_DataTypeDisplayName_1_, + name, + Resources.Foreshore_DisplayName)) { Style = new ChartLineStyle(Color.DarkOrange, 2, DashStyle.Solid) }; @@ -113,10 +113,7 @@ throw new ArgumentNullException("dikeGeometry"); } - return new ChartLineData(CreateDikeHeightData(dikeHeight, dikeGeometry), - string.Format(Resources.GrassCoverErosionInwardsChartDataFactory_Create_DatatTypeDisplayName_0_DataIdentifier_1_, - Resources.DikeHeight_ChartName, - name)) + return new ChartLineData(CreateDikeHeightData(dikeHeight, dikeGeometry), Resources.DikeHeight_ChartName) { Style = new ChartLineStyle(Color.MediumSeaGreen, 2, DashStyle.Dash) };