Kvaz1r

Results 48 comments of Kvaz1r

Thanks,I will be watch for the changes. Then I will not close this issues, may be it will be relevant after the beta release or if be suggestions about new...

> The simplest solution (a kind of workaround) would be to add a mutex into `wxLineChart`, so it protects the internal data when `DoDraw` is executed. However I'm not sure...

Hmm, it's not so easy say something specific without reproducible sample. Does the behaviour will the same if charts replace with wxPanel?

I only see that you at every call ChangeGraph() add new control to ChartWindow as a child and never remove any control from there. You should replace old control with...

> One last question, is there anyway to convert the chart window to a bitmap so that it can be printed? I'm pretty sure the answer is no but I...

Well, this type of chart hasn't associate with some string value and I'm not sure that it needed. So for now you can use code below: ``` wxVector labels;//create vector...

> I failed to locate it on the top of the wxMath2Dplot but this is may be due to my limited knowledge of wxwidgets. Usually and in the example too,...

This popup window is a tooltip. I'm not sure that possible to do what you want, but you can try set align for tooltip as wxALIGN_TOP: ``` wxChartsDefaultTheme->GetStackedColumnChartOptions()->GetCommonOptions(). GetMultiTooltipOptions().SetAlignment(wxALIGN_TOP); ```...

> I'm still not sure what padding does because I never saw any changes to the chart when I changed the values. As far I understand padding only used for...

> I guess, many (most? all?) charts doesn't support updating the underlying dataset (I wasn't able to find the relevant methods in `wxCandlestickChart`). Without such functionality the library is hardly...