mandreou
mandreou
Hello, i'm working on something with barseries and category axis. I have a list with two doubles in each node. First double represents the category axis and second value the...
OverlapsStacked does not exist in c# for oxyplot. Imagine you have a tuple {1,5}{2,4}{2,7}{3,4.5}{5,5}{5.4,5}{5.4, 6} if left double number exists twice it means that the right double number will be...
Hello there, i set the IsZoomEnabled = false for the categoryaxis but it does not work
ChartModel.LegendTitle = "Test"; ChartModel.LegendOrientation = LegendOrientation.Horizontal; ChartModel.LegendPlacement = LegendPlacement.Outside; ChartModel.LegendPosition = LegendPosition.TopLeft; ChartModel.LegendBackground = OxyColor.FromAColor(200, OxyColors.White); ChartModel.LegendBorder = OxyColors.Black; var barSeries = new BarSeries.BarSeries { LabelPlacement = LabelPlacement.Inside, }; ChartModel.Series.Add(barSeries);...
for instance: ChartModel.LegendBorderThickness = 0; ChartModel.LegendOrientation = LegendOrientation.Horizontal; ChartModel.LegendPlacement = LegendPlacement.Outside; ChartModel.LegendPosition = LegendPosition.BottomCenter; ChartModel.Title = "Simple stacked model"; var categoryAxis1 = new OxyPlot.Axes.CategoryAxis(); categoryAxis1.MinorStep = 1; categoryAxis1.IsZoomEnabled = false;...