@@ -608,9 +608,11 @@ const static auto tests =
608608 testcase_2})
609609{
610610 chart.getOptions ().getChannels ().at (y).range .min =
611- Vizzu::Base::AutoParam{Vizzu::Gen::ChannelExtrema (" 110%" )};
611+ Vizzu::Base::AutoParam{
612+ Vizzu::Gen::ChannelExtrema::fromString (" 110%" )};
612613 chart.getOptions ().getChannels ().at (y).range .max =
613- Vizzu::Base::AutoParam{Vizzu::Gen::ChannelExtrema (" 0%" )};
614+ Vizzu::Base::AutoParam{
615+ Vizzu::Gen::ChannelExtrema::fromString (" 0%" )};
614616 auto &&events = get_events (chart);
615617
616618 check->*events.count (" plot-axis-draw" ) == 1u ;
@@ -627,13 +629,17 @@ const static auto tests =
627629 testcase_0})
628630{
629631 chart.getOptions ().getChannels ().at (y).range .min =
630- Vizzu::Base::AutoParam{Vizzu::Gen::ChannelExtrema (" 0.0" )};
632+ Vizzu::Base::AutoParam{
633+ Vizzu::Gen::ChannelExtrema::fromString (" 0.0" )};
631634 chart.getOptions ().getChannels ().at (y).range .max =
632- Vizzu::Base::AutoParam{Vizzu::Gen::ChannelExtrema (" 1.0" )};
635+ Vizzu::Base::AutoParam{
636+ Vizzu::Gen::ChannelExtrema::fromString (" 1.0" )};
633637 chart.getOptions ().getChannels ().at (x).range .min =
634- Vizzu::Base::AutoParam{Vizzu::Gen::ChannelExtrema (" 0.0" )};
638+ Vizzu::Base::AutoParam{
639+ Vizzu::Gen::ChannelExtrema::fromString (" 0.0" )};
635640 chart.getOptions ().getChannels ().at (x).range .max =
636- Vizzu::Base::AutoParam{Vizzu::Gen::ChannelExtrema (" 1.0" )};
641+ Vizzu::Base::AutoParam{
642+ Vizzu::Gen::ChannelExtrema::fromString (" 1.0" )};
637643
638644 auto &&events = get_events (chart);
639645
0 commit comments