gismowdd

Results 11 comments of gismowdd

Hi Kvaz1r , so it behaves like there is some sort of redraw event that occurs as soon as the cursor touches the stackedColumnChartCtrl. I don't think it's anything I...

i've written a simpler program that exihbits the same behavior. You can select one of three table to graph and press the run button, the table will display. if you...

Kvaz1r thanks for helping this novice wxWidgets struggle through this. Thanks for supporting the wxCharts library. I'm very happy with the quality of the charts. Removing the control and then...

Hi Kvaz1r , Yeah wxALIGN_TOP aligned the bottom of the tooltip to the top of the bar which works great for the short stacks but the tooltip tops on the...

I'm getting the same shared pointer error that I got on the previous issue. The chartData has 1 categorical data sets and 5 double datasets so I set nDatasets =...

Thanks again for all your help. Worked like a charm. One last question is there a way to specify colors by rbg values?

I think the LineChartDatasetOptions stays in memory. If I build it after rebooting it executes and makes the changes fine. But if I rebuild it again it dies on execution....

Yeah I added event.Skip(); at the end and it all works fine. Thanks for your help and patienc.e

In the stacked bars the first data set is at the bottom of the bar but it's at the top of the legend. Is there a way to reverse the...

So I added the data set to a new data set in reverse order of the data used to make the chart: ` reverseChartdata->AddDataset(dataset13); reverseChartdata->AddDataset(dataset12); reverseChartdata->AddDataset(dataset11); reverseChartdata->AddDataset(dataset10); reverseChartdata->AddDataset(dataset9); reverseChartdata->AddDataset(dataset8); reverseChartdata->AddDataset(dataset7);...