We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From oxyplot: oxyplot/oxyplot#965
Adding image annotation not showing on windows phone.
what i try :
OxyImage imageAdd; OxyImage imageDelete; var assembly = typeof(TssDashboard).GetTypeInfo().Assembly; //var str = this.GetType().AssemblyQualifiedName; using (var stream = assembly.GetManifestResourceStream("Test.Resources.OKLA.png")) { imageAdd = new OxyImage(stream); } using (var stream = assembly.GetManifestResourceStream("Test.Resources.DeleteLA.png")) { imageDelete = new OxyImage(stream); } //// Relative to plot area, above top/left corner, 20pt high model.Annotations.Add(new OxyPlot.Annotations.ImageAnnotation { ImageSource = imageAdd, X = new PlotLength(DateTimeAxis.ToDouble(DictVarData.ElementAt(DictVarData.Count -50 ).Name), PlotLengthUnit.Data), Y = new PlotLength(980, PlotLengthUnit.Data), Width= new PlotLength(44, PlotLengthUnit.ScreenUnits), HorizontalAlignment = OxyPlot.HorizontalAlignment.Center, VerticalAlignment = OxyPlot.VerticalAlignment.Top, }); model.InvalidatePlot(true);
code execution not showing image on chart.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
From oxyplot: oxyplot/oxyplot#965
Adding image annotation not showing on windows phone.
what i try :
code execution not showing image on chart.
The text was updated successfully, but these errors were encountered: