slider
slider copied to clipboard
How to get marks value when onChange action triggered
Please check above image, when i clicked on marked $75K, i want to get onChange value as $75K instead of value 3.
Check bellow my marks,
// Currency list
export const currencies = {
0: '$0',
1: '$25k',
2: '$50k',
3: '$75k',
4: '$100k',
5: '$125k',
6: '$150k',
7: '$175k',
8: '$200k'
};
Thank you.
We can do this using the state when onChange is triggered. From now, I am working on this issue (#854)