Angular Material Stepper has following problems for me which I can not found from documentation.
- How can I display any string or html instead of stepper index numbers?
- How can display matToolTip when mouse hover any mat step?
I am using latest version of Material Angular IO.
Unfortunately, right now it is impossible to override the number using native hooks from material. One possible solution is to use css to overwrite the value.
Here we hide the current symbol and use our own text/symbols:
To answer the second part of your question, you can easily display a tooltip by wrapping the content of
<ng-template matStepLabel>
into adiv
with amatTooltip
property. This demo shows an example.