Skip to content

Author: admin@master

How to change Label text color in amcharts

I have to change label text to green and red color.how can we change the color of a label using java script amcharts. and is it possible to add a up arrow after the label text.Please check the code below. Please Suggest me How can i achieve this.Also check this JsFiddle https://jsfiddle.net/ArunKumarUmma/21wm…

VueJS – How to detect Ctrl+V?

I’ve already seen the answers to this question, but it’s not the solution I need, since it’s for jQuery, and I need something for vue.js. So far, I was able to detect single character presses using the ff. code: The code above successfully prevents the textbox from accepting ArrowLeft, Home,…

RegEx match exactly 4 digits

Ok, i have a regex pattern like this /^([SW])w+([0-9]{4})$/ This pattern should match a string like SW0001 with SW-Prefix and 4 digits. I thougth [0-9]{4} would do the job, but it also matches strings with 5 digits and so on. Any suggestions on how to get this to work to only match strings with SW and 4 digit…