Quantcast
Channel: OxyPlot (moved to GitHub)
Viewing all 2061 articles
Browse latest View live

Source code checked in, #4cee84a61bcd

$
0
0
Axis: remove unused RelatedAxis property

Source code checked in, #b12df6bdd144

$
0
0
Axis.Scale and Axis.Offset: Remove unused setters

Closed Issue: Position of axis titles [10189]

$
0
0
Titles are rendered inside plot area.
https://oxyplot.codeplex.com/discussions/543551

New Post: Axis titles moved inside plot area after upgrade.

Released: OxyPlot binaries (Apr 28, 2014)

$
0
0
This package contains release assemblies.

Assemblies for the following platforms are included
  • WPF (.NET 4.5)
  • WPF (.NET 4.0)
  • Windows 8.1 Store App
  • Silverlight 5
  • Windows Forms (.NET 4.5)
  • Windows Forms (.NET 4.0)

Note:
  • Using NuGet is recommended, this library is updated frequently!
  • Use NuGet or the Xamarin Components store to get builds for other platforms.
  • Download or clone the source code to build and run the examples.

Updated Release: OxyPlot binaries (Apr 28, 2014)

$
0
0
This package contains release assemblies.

Assemblies for the following platforms are included
  • WPF (.NET 4.5)
  • WPF (.NET 4.0)
  • Windows 8.1 Store App
  • Silverlight 5
  • Windows Forms (.NET 4.5)
  • Windows Forms (.NET 4.0)

Note:
  • Using NuGet is recommended, this library is updated frequently!
  • Use NuGet or the Xamarin Components store to get builds for other platforms.
  • Download or clone the source code to build and run the examples.

Updated Release: OxyPlot binaries (Apr 28, 2014)

$
0
0
This package contains release assemblies.

Assemblies for the following platforms are included
  • WPF (.NET 4.5)
  • WPF (.NET 4.0)
  • Windows 8.1 Store App
  • Silverlight 5
  • Windows Forms (.NET 4.5)
  • Windows Forms (.NET 4.0)

Note:
  • Using NuGet is recommended, this library is updated frequently!
  • Use NuGet or the Xamarin Components store to get builds for other platforms.
  • Download or clone the source code to build and run the examples.

Released: OxyPlot binaries (Apr 28, 2014)

$
0
0
This package contains release assemblies.

Assemblies for the following platforms are included
  • WPF (.NET 4.5)
  • WPF (.NET 4.0)
  • Windows 8.1 Store App
  • Silverlight 5
  • Windows Forms (.NET 4.5)
  • Windows Forms (.NET 4.0)

Note:
  • Using NuGet is recommended, this library is updated frequently!
  • Use NuGet or the Xamarin Components store to get builds for other platforms.
  • Download or clone the source code to build and run the examples.

New Comment on "Custom trackers"

$
0
0
Hello. I can't finde Example "Custom trackers", who can give me link please. Or who ken help. I've scatter series, and i'm need for every points in series show unique identifier (5 string). Hwo know how make it?

Released: OxyPlot binaries (Apr 28, 2014)

$
0
0
This package contains release assemblies.

Assemblies for the following platforms are included
  • WPF (.NET 4.5)
  • WPF (.NET 4.0)
  • Windows 8.1 Store App
  • Silverlight 5
  • Windows Forms (.NET 4.5)
  • Windows Forms (.NET 4.0)

Note:
  • Using NuGet is recommended, this library is updated frequently!
  • Use NuGet or the Xamarin Components store to get builds for other platforms.
  • Download or clone the source code to build and run the examples.

Updated Release: OxyPlot binaries (Apr 28, 2014)

$
0
0
This package contains release assemblies.

Assemblies for the following platforms are included
  • WPF (.NET 4.5)
  • WPF (.NET 4.0)
  • Windows 8.1 Store App
  • Silverlight 5
  • Windows Forms (.NET 4.5)
  • Windows Forms (.NET 4.0)

Note:
  • Using NuGet is recommended, this library is updated frequently!
  • Use NuGet or the Xamarin Components store to get builds for other platforms.
  • Download or clone the source code to build and run the examples.

New Post: Strange behavior on zooming/moving

$
0
0
Hi,

When I right click on chart or scroll with wheel, charts automatically zooms to strange position, (0,0) + data.

Package version 2014.1.296.1

xaml code
<Window x:Class="OxyPlotTest.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:oxy="http://oxyplot.codeplex.com"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <oxy:Plot>
            <oxy:LineSeries x:Name="Test" Title="Test" ItemsSource="{Binding}" />
        </oxy:Plot>
    </Grid>
</Window>
code behind
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace OxyPlotTest
{

    public class Model
    {
        public double X { get; set; }
        public double Y { get; set; }


    }

    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        protected ObservableCollection<Model> TestData;

        public MainWindow()
        {
            TestData = new ObservableCollection<Model>();
            TestData.Add(new Model() { X = 150000, Y = 10000 });
            TestData.Add(new Model() { X = 150002, Y = 10000 });
            TestData.Add(new Model() { X = 150004, Y = 10000 });
            TestData.Add(new Model() { X = 150006, Y = 10000 });
            TestData.Add(new Model() { X = 150008, Y = 10000 });
            TestData.Add(new Model() { X = 150010, Y = 10000 });
            TestData.Add(new Model() { X = 150012, Y = 10000 });
            TestData.Add(new Model() { X = 150014, Y = 10000 });

            InitializeComponent();
            Test.DataContext = TestData;
            Test.Mapping = (x) => { var m = x as Model; return new OxyPlot.DataPoint(m.X, m.Y); };
        }
    }
}
Any advice how to change this behavior to keeping its display context?

Thanks.

Created Unassigned: Phasor diagram [10190]

$
0
0
Add support for phasor diagrams.

http://en.wikipedia.org/wiki/Phasor
http://www.kwantlen.ca/science/physics/faculty/mcoombes/P2421_Notes/Phasors/Phasors.html
https://www.eiseverywhere.com/file_uploads/04577f007f592895aaac58ccbf03d781_Phasors_Final_3_9_2012_Ron_Alexander.pdf
http://resonanceswavesandfields.blogspot.no/2007/08/phasors.html
http://www.electronics-tutorials.ws/accircuits/phasors.html

New Post: Axis titles moved inside plot area after upgrade.

$
0
0
Tried new version. Title position is ok now, but axes label and title with right or top aligment draws outside of control area. Screenshot - http://yadi.sk/d/Dt3Obp1rNhVsw

ps. Thank you for very fast response!

New Post: TrackerFormatString question

$
0
0
Hello i need help
Ihave a scatterSeries. And i need to for every point's have unique string lines, and this lines must show at the tracker.
How i can do that???
Image

New Post: Axis titles moved inside plot area after upgrade.

$
0
0
What is the value of the PlotMargins property of the PlotModel? Try to increase the top and right values or use the default value (NaN,NaN,NaN,NaN) to get 'automatic' margins.

New Post: Tracker funktional question

$
0
0
Hello i need help
Ihave a scatterSeries. And i need to for every point's have unique string lines, and this lines must show at the tracker. And how send the tracker show position???
How i can do that???

Image

New Post: Programatically (or via XAML) Define color for each bar in ColumnSeries

$
0
0
I'm really enjoying the OxyPlot library. Thank you!

I have a Plot with seven ColumnSeries. I need to set each bar color (in each of the series) based on a property in the model.

From the code, I tried defining a list of colors in DefaultColors the chart is drawn where all the bars in the 1st series are drawn with DefaultColor[0] and all the bars in the 2nd series are drawn with DefaultColors[1], etc.
        eg: plotModel.Series.Add(new ColumnSeries { Title = "V1", ItemsSource = CellList, ValueField = "CellVoltage" });
               OxyColor defaultColor = OxyColor.Parse("#FF000080"); // Default -- blue
               plotModel.DefaultColors.Add(defaultColor);
               ...
From XAML, I tried to set FillColor binding to a method that should return a bar color, but it appears to return the same color for all bars in the series.
 eg: <oxy:ColumnSeries Title="V1" ItemsSource="{Binding Path=CellList}" ValueField="Voltage"  FillColor="{Binding Path=CellBarColor}" />


Thank you for your help
jg

New Post: Live data?

$
0
0
Is there any sample that shows working with live data? I have data from external device and I'm looking for chart library that shows changes in that data.

New Post: Axis titles moved inside plot area after upgrade.

$
0
0
Yes, when I changed PlotMargins to "NaN, NaN, NaN, NaN" in my XAML and now margins looks fine again. Thanks! But when I totally removed it from XAML - axis labels again draws beyond control edges. May be problem in oxyplot WPF adapter? Although workaround is easy. Thank you again!
Viewing all 2061 articles
Browse latest View live


Latest Images

<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>