Hello,
In the stock chart tooltip after upgrading to 24.1 and when I edited the chart (change any properties in it), then the tooltip automatically stops showing “date”. When I inspected the config object, I found two nodes getting added to "valueFormats" which is why date is not displayed: { "series": { "tooltipDisplay": "off" }, "group": { "tooltipDisplay": "off" }.
These gets added as soon as I change something in the stock chart after the 24.1 upgrade.
As a workaround I have added the below code to Initialization JavaScript Function to delete these two :
function(config) { // Check if valueFormats is defined if (config && config.valueFormats) { // Check and remove 'series' from valueFormats if it exists if (config.valueFormats.series) { delete config.valueFormats.series; } // Check and remove 'group' from valueFormats if it exists if (config.valueFormats.group) { delete config.valueFormats.group; } } // Return the modified config object return config; }
The workaround works ok, but needs to be fixed in the product. I dont know where to report this bug, so I have written this post.