As you can see, I have a winform chart (DevExpress Chart) with two series. Each series has its own points. And I want to find the overlapping points of these two series (indicated by the green circle in the picture).
For example (3.4 for the first overlap point and 7.3 for the second overlap point).Thanks.
If you have direct access to the collection Series, you can:
Series
var intersection = Series[0].Points.Intersect(Series[1].Points);
If you create discrete objects Pointalong the way, you may also need to define matching behavior.
Point
, . , , . -, (N log N) (N - ). , , # ( ++, #)
, , O (N) ( "merge" )
Source: https://habr.com/ru/post/1015739/More articles:Incorrect reading from DataTextures in a shader - shaderhttps://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1015735/excel-vba-is-it-possible-to-set-properties-to-each-cell-of-a-range-through-the-use-of-a-matrix&usg=ALkJrhhoj9LiB1eTvtDeZATbRBwmRoJaLgSpring JPA + REST data method: Enum to Integer conversion - javaWhen adding a TFS server to VS2017 Error: "Server already exists in the list below" - tfsSpring @Query annotation with enum parameter - javaTF400324: Услуги Team Foundation недоступны с сервера в Visual Studio 2012 - version-controlHow to use vnware clarity sidenav? - vmwareHow to start gitlab-ci.yml only on the marked branch? - gitlabWhat to do with size_t and std :: size_t? - c ++Are these relationships aggregation, composition, or something else? - c ++All Articles