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

step labels #43

Closed
HerrSammyDE opened this issue Jan 23, 2022 · 6 comments
Closed

step labels #43

HerrSammyDE opened this issue Jan 23, 2022 · 6 comments

Comments

@HerrSammyDE
Copy link

could you add such "step labels"?

nLw1pbrPEd
FPVWYcWPiq

@pixlo
Copy link

pixlo commented Feb 17, 2022

Needed those too, did some research, so maybe it'll be of some help to someone

You could kinda add some of those (tho styles are unavailable by default as far as I'm concerned), component is using nouislider under the hood so it's options are available.
Try passing options object like so:
<Slider :min="0" :max="1000" :options="{pips: {values: [0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100], mode: 'positions'}}" />
docs

@sherwinwater
Copy link

                <Slider
                    v-model="value"
                    :min="0"
                    :max="100"
                    :options="{
                        pips: {
                            values: [
                                0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100,
                            ],
                            mode: 'positions',
                        },
                    }"
                />
<style>
.slider-pips {
    display: flex;
    justify-content: space-evenly;
}
</style>

<style src="@vueform/slider/themes/default.css"></style>

image

@HerrSammyDE
Copy link
Author

is there also a possibility, with which one can block individual steps and only for example 10, 20, 30 ... and not the ones in between like for example 11, 12, 13, ... 21, 22 ... ?

@HerrSammyDE
Copy link
Author

for example
fk7hawh0no

@dtice
Copy link

dtice commented Mar 17, 2022

                <Slider
                    v-model="value"
                    :min="0"
                    :max="100"
                    :options="{
                        pips: {
                            values: [
                                0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100,
                            ],
                            mode: 'positions',
                        },
                    }"
                />
<style>
.slider-pips {
    display: flex;
    justify-content: space-evenly;
}
</style>

<style src="@vueform/slider/themes/default.css"></style>

image

I found that the following changes made the values line up a bit nicer:

<style>
.slider-pips {
    display: flex;
    justify-content: space-between;
}

.slider-value-large {
    margin-right: -1rem;
}
</style>

@adamberecz
Copy link
Collaborator

Once in a while this will be implemented natively. Using it via options with custom CSS is the workaround for now. Duplicate #49.

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

5 participants