-
Notifications
You must be signed in to change notification settings - Fork 133
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
Doesn't read values with special symbols #59
Comments
Hi. Could you paste some example here or in a jsfiddle, please ? |
I just edited your fiddle from another issue, just notice $ sign in first row: |
@C10ne if we create callback function thath will be called on each value to clean those values (with the callback function that must be written be every user of this library), will this be ok for you ? maybe something like this : $('table.highchart')
.bind('highchartTable.cleanValue', function(event, value) {
return value.replace('$', '');
}); |
Well, I made a workaround by adding css pseudo classes. But this sollution could also work. |
I have run into similar issues with £, did the cleanValue callback every get implemented? Thanks |
A cell value with percent (55%) is displayed nicely in the chart, but values like $223 make the plugin render empty graph.
Workaround is to add the symbol via css :before and :after attributes.
The text was updated successfully, but these errors were encountered: