Git Product home page Git Product logo

docs's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

docs's Issues

readthedocs config file

[Action required] Add a configuration file to your project to prevent build failures

The Read the Docs build system will start requiring a configuration file v2 (.readthedocs.yaml) starting on September 25, 2023. We are sending weekly notifications about this issue to all impacted users, as well as temporary build failures (brownouts) as the date approaches for those who haven't migrated their projects. The timeline for this deprecation is as follows:
Monday, July 24, 2023: Do the first brownout (temporarily enforce this deprecation) for 12 hours: 00:01 PST to 11:59 PST (noon)
Monday, August 14, 2023: Do a second brownout (temporarily enforce this deprecation) for 24 hours: 00:01 PST to 23:59 PST (midnight)
Monday, September 4, 2023: Do a third and final brownout (temporarily enforce this deprecation) for 48 hours: 00:01 PST to September 5, 2023 23:59 PST (midnight)
Monday, September 25, 2023: Fully remove support for building documentation without configuration file v2.

The Read the Docs build system will start requiring a configuration file v2 (.readthedocs.yaml) starting on September 25, 2023. We are sending weekly notifications about this issue to all impacted users, as well as temporary build failures (brownouts) as the date approaches for those who haven't migrated their projects. The timeline for this deprecation is as follows:
Monday, July 24, 2023: Do the first brownout (temporarily enforce this deprecation) for 12 hours: 00:01 PST to 11:59 PST (noon)
Monday, August 14, 2023: Do a second brownout (temporarily enforce this deprecation) for 24 hours: 00:01 PST to 23:59 PST (midnight)
Monday, September 4, 2023: Do a third and final brownout (temporarily enforce this deprecation) for 48 hours: 00:01 PST to September 5, 2023 23:59 PST (midnight)
Monday, September 25, 2023: Fully remove support for building documentation without configuration file v2.

https://blog.readthedocs.com/migrate-configuration-v2/

Timeline

How to create timeline ? stacked rows series

ContourSeries sample issue

In the contour series example (oxyplot/docs/models/series/ContourSeries.rst) where the ContourSeries os constructed, the ColumnCoordinates and RowCoordinates are swapped. X is column and y is row.
,

Create Github project.

Please add a new project to this repository so maintainers can organize tasks for each section of the documentation and provide visual feedback on which topics help is more needed.

FormatException after attempt to drag and move plot with mouse

I use TimeSpanAxis type. After creating and adding plots to plotview, any attempt to drag and move the plot in Plotview gives FormatException. But zooming with rolling mousewheel works correctly and don't give any exception. If there are not any plot in Plotview, dragging and moving with mouse works correctly.

Updates to README.md

Through my attempt to build the docs on a Windows 10 computer resulted in these shortcuts that I think if put in README.md may help others too:

  • Specify the first (or one of the first) Python 2.7 versions that includes pip.
  • Specify install instructions of Sphinx using pip and the warning shown when installing that Sphinx supports Python 2 only till January of 2020.
  • Specify .\ as a possibly necessary beginning of the docs-building command.

Documentation - Getting Started

Documentation says to download OxyPlot.WPF and to create a WPF project.

However, in NuGet there is no OxyPlot.WPF, there is only Eto.OxyPlot.WPF. Do I need Eto.Forms?

How to set correct y-axis limit when there is a PointAnnotation

During plotting stem series, it doesn't consider the size of a point annotation when set the y-axis limit automatically.
The effect can be saw the following two plot from one data. The first plot is the default view. I zoomed in a little bit to produce the second plot. Please pay attention to the top "\beta y5++" in the second plot.
1
2

Here is the core code:

// matched peaks
DataPointSeries matchedSeries = new StemSeries { MarkerType = MarkerType.None, Color = OxyColors.Blue };
foreach (KeyValuePair<float, AnnotatedPeak> peak in matchedPeak)
{
    matchedSeries.Points.Add(new DataPoint(peak.Key, peak.Value.intensity));
    AnnotatedPeak annotatedPeak = peak.Value;
    string annotateText = annotatedPeak.chainType + annotatedPeak.byType + annotatedPeak.idx;
    for (int i = 0; i < annotatedPeak.charge; ++i)
    {
        annotateText += "+";
    }
    Annotation test = new PointAnnotation { Shape = MarkerType.None, Size = 0, TextVerticalAlignment = VerticalAlignment.Bottom, X = peak.Key, Y = annotatedPeak.intensity, Text = annotateText};
    plotModel.Annotations.Add(test);
}
plotModel.Series.Add(matchedSeries);
plotViewSpectrum.Model = plotModel;

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.