Add Information to the Tracker (solved)
Artiga wrote at 2013-10-15 17:16:
Hey, using the property "TrackerFormatString" is possible to display different information when you click in a series ... but doing this, you loose the primary functionality (show the X,Y coordinates), how should I do to add new information and keep the old functionality?
Artiga wrote at 2013-10-15 18:08:
WPF Linear and logarithmic axes ignore Visiblity property
I figure that I am either missing something, or that this is a bug.
Any thoughts on how to handle this?
Thanks.
WPF LineSegmentSeries
michaeldjackson wrote at 2013-07-22 19:39:
MDJ
everytimer wrote at 2013-07-22 22:44:
Good luck
[Metro] Plot area background
Nicothekrug wrote at 2013-04-10 15:44:
Is there a way change the background of the plot area only ? (in Metro - The Background property isn't what I want because it changes the whole background of the control, not only the plot area background).
Thanks in advance,
Nicolas
raphay wrote at 2013-04-10 16:32:
Nicothekrug wrote at 2013-04-10 17:09:
But with this code, the background don't change :
RectangleAnnotation plotBackground = new RectangleAnnotation();
plotBackground.Fill = OxyColors.Pink;
PlotModel.Annotations.Add(plotBackground);
What am I doing wrong ?raphay wrote at 2013-04-11 15:20:
Nicothekrug wrote at 2013-04-11 15:27:
No code in online Example Browser
TonHadry wrote at 2014-02-15 22:06:
Or - am I blind?
It is very usefull, to display code in examples like in desktop app (OxyPlot.WPF Example Browser)...
objo wrote at 2014-02-16 14:32:
Why not make RenderContext of Plot selectable by user
sunwayking wrote at 2013-09-04 03:36:
This method brought me dozens of performance improvement when PlotEx was rendering 5,000 points with 500 FPS.
Why must I make a new class, PlotEx?
It's because Plot doesn't include IRenderContext, but use a specified SharpRenderContext.
If so, IRenderContext becomes meaningless.
BTW, How to contribute my work about Plot?
objo wrote at 2013-09-04 20:07:
Can you create a fork? Then make a pull request, and I will review!
sunwayking wrote at 2014-07-12 14:00:
It would be very interesting to see how you have implemented this render context based on writable bitmaps!Hi objo, I don't know how to create a fork and make a pull request. I put source code on a network disk. You can download it yourself.
Can you create a fork? Then make a pull request, and I will review!
Supporting directly downloading with IE:
Download OxyPlot.Wpf.Extension (for WPF only)
And, objo, may you feel like this one: Change Current DrawingContext to one using OpenGL
Axis label angle set to 90 degrees
bsguedes wrote at 2014-06-18 14:37:
When I tried to create a category axis with its labels' angles set to 90 degrees, I have the following result:
As we can see, the axis title is not shown correctly and labels that are to big are not displayed correctly.
Is this a bug or should I be setting a different property to display this information correctly?
Thanks!
bsguedes wrote at 2014-06-30 20:07:
everytimer wrote at 2014-07-01 06:57:
model.Axes[0].AxisTitleDistance = 100;
Good luck.objo wrote at 2014-07-02 12:45:
model.PlotMargins.Bottom
? If set to
NaN
, the margin should be adjusted automatically. If that is not working, then it is a bug! Using the
AxisTitleDistance
is a work-around :-)OxyPlot disappear after RefreshPlot(true)
scheang wrote at 2013-04-11 18:59:
public void MyOxyPlot(string GraphName, string GraphType, DateTime StartDate, DateTime EndDate)
{
var tmp = new PlotModel(GraphName + " " + GraphType);
tmp.Axes.Add(new OxyPlot.Axes.LinearAxis(OxyPlot.Axes.AxisPosition.Left) { MajorGridlineStyle = LineStyle.Solid, MinorGridlineStyle = LineStyle.Dot });
tmp.Axes.Add(new OxyPlot.Axes.DateTimeAxis(OxyPlot.Axes.AxisPosition.Bottom, StartDate, EndDate, null, null, OxyPlot.Axes.DateTimeIntervalType.Hours)
{
MajorGridlineStyle = LineStyle.Solid,
Angle = 90,
StringFormat = "yyyy",
MajorStep = 365.0,
//MajorStep = 1.0 / 24 / 2, // 1/24 = 1 hour, 1/24/2 = 30 minutes
IsZoomEnabled = true,
MaximumPadding = 0,
MinimumPadding = 0,
//TickStyle = TickStyle.None
});
var ls = new OxyPlot.Series.LineSeries("Line1") { DataFieldX = "X", DataFieldY = "Y" };
List<OxyDataItem> ii = new List<OxyDataItem>();
foreach (DataRow dtr in TSDataTable.Rows)
{
if ((DateTime)dtr["Time Stamp"] >= StartDate && (DateTime)dtr["Time Stamp"] <= EndDate)
ii.Add(new OxyDataItem { X = (DateTime)dtr["Time Stamp"], Y = (double)dtr[GraphType] });
ls.ItemsSource = ii;
tmp.Series.Add(ls);
if (MyMDDPlotModel == null)
{
MyMDDPlotModel = tmp;
MyMDDPlotModel.InvalidatePlot(false);
MyMDDPlotModel.RefreshPlot(true);
}
}
Heatmap interpolation color
AvanDiepen wrote at 2014-01-16 11:43:
objo wrote at 2014-01-17 07:59:
The heat map is rendered by interpolating a bitmap, and this is not the same as the interpolation of the palette.
At the center of each pixel it will be correct, but between pixels may be wrong.
It can be reproduced by
[Example("D501409: Interpolation Issue")] public static PlotModel InterpolationIssue() { var data = new double[2, 3]; data[0, 0] = -10; data[0, 1] = 10; var model = new PlotModel("HeatMapSeries"); model.Axes.Add(new LinearColorAxis { Position = AxisPosition.Right, Palette = new OxyPalette(OxyColors.Red, OxyColors.Green, OxyColors.Blue) }); var hms = new HeatMapSeries { CoordinateDefinition = HeatMapCoordinateDefinition.Edge, X0 = 0, X1 = 2, Y0 = 0, Y1 = 3, Data = data, Interpolate = true, LabelFontSize = 0.2 }; model.Series.Add(hms); return model; }
AvanDiepen wrote at 2014-05-15 08:07:
Collapse part of Axis?
Roigaard wrote at 2013-09-03 13:43:
Example (for sake of argument, not real world):
I am mapping a velocity for a moving object as a function of a datetime. At certain points in the lifetime of the observation, the object has no velocity (not just velocity 0, but no velocity). Lets say that the period mapped is 1 day (24 hours from midnight to midnight). In the middle 6 hours (0900 hours to 1500 hours), there is nothing to map, which leaves a wide gap in the graph between the first and the second segment of the graph with nothing in it. I would like to draw those two parts together by "collapsing" the timeaxis, such that 09 hours and 1500 hours on the axis is only seperated by some symbol (e.g. curly lines or dots).
This could of course be accomplished by using two different Plots side by side, but I would like to use the same graph.
objo wrote at 2013-09-03 13:49:
http://oxyplot.codeplex.com/workitem/8903
It is not possible with the standard axes, but should not be too hard to implement (need to change the transform methods)
Customer support service by UserEcho