I'm defining a valueDescriptionFormat with:"{point.name} from {point.x:%Y-%m-%d} to {point.x2:%Y-%m-%d}, completed {point.completed} percent" and it is not reading the percentage, just the word completed. What is the solution?
You should use {point.completed.amount}
:
Example config:
accessibility: {
point: {
valueDescriptionFormat: "{point.name} from {point.x:%Y-%m-%d} to {point.x2:%Y-%m-%d}, completed {(multiply point.completed.amount 100)}%"
}
},