Jack Thomas
Jack Thomas
I also would like to know if there is a good way to draw polar plots. Are there any updates on this issue?
In case anyone comes across this, I was able to draw polar plots using the [Drawing API](https://dearpygui.readthedocs.io/en/latest/documentation/drawing-api.html). I just converted my polar coordinates into cartesian coordinates and drew the polar...
@jmoraispk Unfortunately I cannot share the repository due to being proprietary code, but I can share a polar plot that was generated. 
@jmoraispk Here is some code that draws a simple circle in a polar plot. ``` from dearpygui.dearpygui import * import numpy as np create_context() with window(label="Polar Plot"): with drawlist(width=1000, height=1000):...