File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2222
2323### Added
2424
25- - Separate Channel properties to AxisChannel properties at config.
26- - Move split align sort and reverse to AxisChannel
25+ - Separate AxisChannel properties from Channel properties at config.
26+ - Move split align sort and reverse from config to AxisChannel config.
2727- Add new sorting strategy: 'byLabel'.
2828- Enable split and align on mainAxis.
2929
Original file line number Diff line number Diff line change @@ -187,7 +187,7 @@ std::vector<PlotBuilder::BucketSortInfo> PlotBuilder::sortedBuckets(
187187 break ;
188188 case Sort::byLabel:
189189 std::ranges::stable_sort (sorted,
190- [](const BucketInfo &lhs, const BucketInfo &rhs)
190+ [](const BucketSortInfo &lhs, const BucketSortInfo &rhs)
191191 {
192192 if (rhs.label == nullptr || lhs.label == nullptr )
193193 return lhs.label != nullptr ;
You can’t perform that action at this time.
0 commit comments