Skip to content

Commit b16e956

Browse files
committed
1.9 preview.
1 parent 7dfa74c commit b16e956

File tree

4 files changed

+21
-2
lines changed

4 files changed

+21
-2
lines changed

Directory.Build.props

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
<MinorPatchVer>9.0</MinorPatchVer>
1313
<PRVer>-pr</PRVer>
1414
<NugetReleaseNotes>
15+
Many additions and fixes in HitTest for lines and points charts both in 2D and mainly in 3D modes.
16+
Optimizations and bugs fixes.
17+
More info: https://github.com/kirsan31/winforms-datavisualization/releases/tag/1.9pr
1518
</NugetReleaseNotes>
1619
</PropertyGroup>
1720
</Project>

Docs/BreakingChanges.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
## Most notable breaking changes
2+
3+
- `SqlCommand`, `SqlDataAdapter` can't be used as chart's `DataSource` anymore.
4+
- **Since 1.8 preview:**
5+
If you use Axes auto min / max values and call `DataPointCollection.Clear()` method for already empty collection:
6+
- Old behavior - axes min / max values will be recalculated on next chart paint.
7+
- New behavior - axes min / max values will not be recalculated.
8+
- **Since 1.9 preview:**
9+
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.
10+
To draw a vertical line at an X-axis value of 0, you had to set a custom flag, `IsXAxisQuantitative`.
11+
Now, a series is considered indexed only if the `IsXValueIndexed` flag is set. The custom flag, `IsXAxisQuantitative`, has been removed.
12+
13+
Recommended actions:
14+
- 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.

NuGetReadme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This control is a [.NET](https://dotnet.microsoft.com/) continuation of [.NET Fr
99
- New 3D mode for emulating Z axis.
1010
- New API elements.
1111
- This Nuget package.
12-
- Small bugs fixes.
12+
- Bugs fixes and other improvements.
1313

1414
### Main differences from available free .NET WinForms chart controls.
1515

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ This repository is a [.NET](https://dotnet.microsoft.com/) continuation of [.NET
1212
- New [3D mode](Docs/ZDepthRealCalc/ZDepthRealCalc.md) for emulating Z axis.
1313
- [New API elements](Docs/NewAPI.md).
1414
- [Nuget package](https://www.nuget.org/packages/WinForms.DataVisualization/).
15-
- Small bugs fixes.
15+
- Bugs fixes and other improvements.
16+
- [**Breaking changes.**](Docs/BreakingChanges.md)
1617

1718
### Main differences from available free .NET WinForms chart controls
1819

0 commit comments

Comments
 (0)