Skip to content

Commit 2d7a67c

Browse files
committed
1.10 preview.
1 parent 979811b commit 2d7a67c

File tree

6 files changed

+17
-21
lines changed

6 files changed

+17
-21
lines changed

Directory.Build.props

+7-4
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,14 @@
99

1010
<PropertyGroup>
1111
<MajorVer>1</MajorVer>
12-
<MinorPatchVer>9.2</MinorPatchVer>
13-
<PRVer></PRVer>
12+
<MinorPatchVer>10.0</MinorPatchVer>
13+
<PRVer>-pr</PRVer>
1414
<NugetReleaseNotes>
15-
.NET 8 support.
16-
Small bug fixes.
15+
Per-Monitor DPI awareness (`PerMonitorV2`) support.
16+
Lots of performance improvements.
17+
Old small bugs fixes.
18+
Some breaking changes.
19+
More info: https://github.com/kirsan31/winforms-datavisualization/releases/tag/1.10pr
1720
</NugetReleaseNotes>
1821
</PropertyGroup>
1922
</Project>

Docs/BreakingChanges.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,22 @@
11
## Most notable breaking changes
22

33
- `SqlCommand`, `SqlDataAdapter`, `SqlDataReader` can't be used as chart's `DataSource` anymore.
4+
45
- ~~**Since 1.8 preview:**~~ **reverted in 1.9**
56
~~If you use Axes auto min / max values and call `DataPointCollection.Clear()` method for already empty collection:~~
67
- ~~Old behavior - axes min / max values will be recalculated on next chart paint.~~
78
- ~~New behavior - axes min / max values will not be recalculated.~~
9+
810
- **Since 1.9 preview:**
911
The algorithm for determining indexed series has been changed. Previously, a series was considered indexed if the `IsXValueIndexed` flag was set or if all its data points had an X-axis value equal to 0.
1012
To draw a vertical line at an X-axis value of 0, you had to set a custom flag, `IsXAxisQuantitative`.
1113
Now, a series is considered indexed only if the `IsXValueIndexed` flag is set. The custom flag, `IsXAxisQuantitative`, has been removed.
1214

1315
Recommended actions:
1416
- If your indexed series were defined solely by having all their X-axis values equal to zero, you need to set the `IsXValueIndexed` flag for these series.
15-
- If you were using the `IsXAxisQuantitative` flag, you should remove it.
17+
- If you were using the `IsXAxisQuantitative` flag, you should remove it.
18+
19+
- **Since 1.10 preview:**
20+
- Deprecated `#SER` keyword removed - use `#SERIESNAME` instead.
21+
- `DataPointCustomProperties.Item[int]` indexer removed. *It was no use anyway.*
22+
- `IDisposable` Interface implementation removed from: `AnnotationCollection`, `SeriesCollection`, `LabelStyle`, `StripLinesCollection`, `StripLine`, `Title`, `TitleCollection`, `LegendCellColumn`, `LegendCell`, `LegendCellCollection`, `LegendItem`, `LegendCellColumnCollection`, `Legend`, `LegendCollection`, `Annotation` and all it's derived classes except `PolylineAnnotation`.

NuGetReadme.md

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ This control is a [.NET](https://dotnet.microsoft.com/) continuation of [.NET Fr
77
- **Full support of new WinForms designer.**
88
- Lots of performance improvements.
99
- New 3D mode for emulating Z axis.
10+
- Per-Monitor DPI awareness (`PerMonitorV2`) support.
1011
- New API elements.
1112
- This Nuget package.
1213
- Bugs fixes and other improvements.

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ This repository is a [.NET](https://dotnet.microsoft.com/) continuation of [.NET
1010
- **Full support of new WinForms designer.**
1111
- Lots of performance improvements.
1212
- New [3D mode](Docs/ZDepthRealCalc/ZDepthRealCalc.md) for emulating Z axis.
13+
- Per-Monitor DPI awareness (`PerMonitorV2`) support.
1314
- [New API elements](Docs/NewAPI.md).
1415
- [Nuget package](https://www.nuget.org/packages/WinForms.DataVisualization/).
1516
- Bugs fixes and other improvements.

SECURITY.md

-15
This file was deleted.

src/System.Windows.Forms.DataVisualization/DataManager/DataPoint.cs

-1
Original file line numberDiff line numberDiff line change
@@ -3187,7 +3187,6 @@ public virtual void SetDefault(bool clearAll)
31873187
/// Indexer of the custom properties. Gets the data point custom property with the specified name.
31883188
/// </summary>
31893189
/// <param name="name">Name of the custom property.</param>
3190-
///<value>If set to <see langword="null" /> - delete <paramref name="name" /> property.</value>
31913190
/// <exception cref="System.ArgumentNullException"></exception>
31923191
public string this[string name]
31933192
{

0 commit comments

Comments
 (0)