How can i place popper in left or right side using Material Design #107
Answered
by
hakimio
Mateus-Felipe-Ribeiro
asked this question in
Q&A
-
Hello, i using Material Design for my app, but for now it is only possible to place above or below. Is there any possible way to put left or right? |
Beta Was this translation helpful? Give feedback.
Answered by
hakimio
Dec 1, 2023
Replies: 2 comments 1 reply
-
You can specify import {IStepOption} from 'ngx-ui-tour-md-menu';
const steps: IStepOption[] = [{
anchorId: 'start.tour',
content: 'Welcome to the Ngx-UI-Tour tour!',
title: 'Welcome',
placement: {
xPosition: 'before',
yPosition: 'above'
}
}]; However, it will only work if there is enough space to show the menu on the specified position. |
Beta Was this translation helpful? Give feedback.
0 replies
-
A bit late, but... now there is also |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
hakimio
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A bit late, but... now there is also
placement.horizontal
config.