Unfortunately that functionality has not been enabled yet. It'll show up in one of the upcoming releases. Stay tuned.
This feature isn't yet available. It's being tracked in this GitHub issue: https://github.com/decred/Paymetheus/issues/158
If you are using the cli utilities you should switch to dcrinstall. Steps to upgrade the first and only time are at https://github.com/decred/decred-release/tree/master/cmd/dcrinstall Windows msis can be simply upgraded by double clicking and going through the wizard.
So just run the new dcrinstall and it'll silently upgrade while maintaining a copy of the prior binaries.
The graphs in ticketbuyer isnt showing. All the csv files are getting updated.. But all the graphs are empty. How to fix this?
Try viewing the source and see what path it is trying to use for the CSV files -- look for a line like d3.csv("/path/to/webui/prices.csv"). I'm guessing it's not creating a valid path on Windows or something like that. And if you could tell us what browser you're using, that would help to see if it can be reproduced.
I can reproduce here. It's using the full disk path to the CSV file instead of the relative path in the webui folder. The problem is in the following code: https://github.com/decred/dcrticketbuyer/blob/master/webui.go#L377-L386 Change Code: filepath.Join(csvPath, ...) to: Code: filepath.Join("webui/", ...) I believe the problem is that dcrinstall sets a full path to webui directory whereas dcrticketbuyer was expecting a relative path. There's an issue open now to track it: https://github.com/decred/dcrticketbuyer/issues/39
i have pointed out this issue multiple times since months ago when dcrtickerbuyer was first launched. https://forum.decred.org/threads/dc...omatic-ticket-purchase.3548/page-3#post-21433 no one was really responding to my query. i was surprised that one else actually faced the same issue even after so long. at least now, im glad that it is brought up again and finally the fix is on its way.