Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

When rangeslider(;orientation="vertical"), smaller value is upper #174

Closed
ujimushi opened this issue Feb 24, 2023 · 2 comments
Closed

When rangeslider(;orientation="vertical"), smaller value is upper #174

ujimushi opened this issue Feb 24, 2023 · 2 comments

Comments

@ujimushi
Copy link
Contributor

When I was trying Vertical Range Slider, I wrote next code.

using Interact, Blink
win = Window();
ui = rangeslider(0:100; value=[30, 80], orientation="vertical");
body!(win, ui)

But, this Range Slider is ... the smaller value is upper, the bigger value is below.
It is not the result I expected.

I found the option Direction at NoUiSlider site.

But, it is not selectable with Widgets.rangeslider().

I suggest that direction option is selectable.

When next change,

diff --git a/src/slider.jl b/src/slider.jl
index dbc44c2..778a476 100644
--- a/src/slider.jl
+++ b/src/slider.jl
@@ -82,13 +82,14 @@ Pass a vector to `value` with two values if you want to select a range.
 """
 function rangeslider(theme::WidgetTheme, vals::AbstractUnitRange{<:Integer}, formatted_vals = format.(vals);
     style = Dict(), label = nothing, value = medianelement(vals), orientation = "horizontal", readout = true,
-    className = "is-primary")
+    className = "is-primary", direction = "ltr")
 
     T = Observables.to_value(value) isa Vector ? Vector{eltype(vals)} : eltype(vals)
     value isa AbstractObservable || (value = Observable{T}(value))
 
     index = value
     orientation = string(orientation)
+    direction = string(direction)
     preprocess = T<:Vector ? js"unencoded.map(Math.round)" : js"Math.round(unencoded[0])"
 
     scp = Scope(imports = vcat([nouislider_min_js, nouislider_min_css], libraries(theme)))
@@ -122,6 +123,7 @@ function rangeslider(theme::WidgetTheme, vals::AbstractUnitRange{<:Integer}, for
                 tooltips: $tooltips,
                 connect: $connect,
                 orientation: $orientation,
+                direction: $direction,
                 format: {
                     to: function ( value ) {
                         var ind = Math.round(value-($min));

We'll get the Range Slider the bigger value is upper, smaller value is lower, with direction="rtl" option.

using Interact, Blink
win = Window();
ui = rangeslider(0:100; value=[30, 80], orientation="vertical", direction="rtl");
body!(win, ui)
@piever
Copy link
Collaborator

piever commented Mar 13, 2023

Yes, it makes sense to support the direction keyword. Could you open a PR with this diff (also updating the docstring of rangeslider)?

piever added a commit that referenced this issue Mar 22, 2023
* add 'direction' kwargs to rangeslider

* Fix docstring

Co-authored-by: Pietro Vertechi <[email protected]>

* function signature updated

---------

Co-authored-by: Pietro Vertechi <[email protected]>
@piever
Copy link
Collaborator

piever commented May 18, 2023

Fixed by #175.

@piever piever closed this as completed May 18, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants