Giter Club home page Giter Club logo

mpplot's People

Contributors

apriltg avatar bomjkolyadun avatar mp0w avatar

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  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  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  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  avatar  avatar  avatar

mpplot's Issues

can you help me

MPPlot
this code is very well for me i want to add the x axis and y axis to deacribe the tempture change can you help me thank you very much my email is [email protected]

Swift Sample

Hi Alex,

Do you have any sample code for Swift.
I like to use this control in my project.

Thanks in advance,
Imtee

Ability to turn off details buttons

If a users wants to just create a visual hint graph without needing the actual value to be displayed on tapping on the points. A @Property has to be created which will essentially act as a switch to turn on/off the functionality.

value display

Implemented MPGraphview in that, When graph is populated DOTS is showing for values, if i try to click on DOT its showing the value like (1.019, 1.022), but i need to display full value which i am getting from API response like(1.019156, 1.021593).

Is it possible to display full number, if possible please help me in this how to set the full value.

Compilation warning to fix

Hello
Here you are what I can see in my console:

objc[174]: Class MPButton is implemented in both /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer and /private/var/mobile/Containers/Bundle/Application/BA13D00A-666B-4AB2-8045-60FBF73BB9A5/Chessboard.app/Chessboard. One of the two will be used. Which one is undefined.

Could you please rename your MPButton class to let this warning disappear, make a new pod version and release it?
This warning is not good at all but it is very simple to overcome.

Thank you.

Allow array of 0's. Here is solution

Did feel like going through the whole thing because I'm relatively new to git still but when placing an array of 0's into a bar graph, you would get one large bar instead of all the zeros. I fixed this by adding the following:

if (max == 0) {
max = 1;
}

to the following

  • (MPGraphValuesRange)rangeForValues:(NSArray *)values{

    CGFloat min,max;

    min=max=[[values firstObject] floatValue];

    for (NSInteger i=0; i<values.count; i++) {

    CGFloat val=[[values objectAtIndex:i] floatValue];
    
    if (val>max) {
        max=val;
    }
    
    if (val<min) {
        min=val;
    }
    

    }
    //my fix
    if (max == 0) {
    max = 1;
    }

    return MPMakeGraphValuesRange(min, max);
    }

MPButton is also defined in Mediaplayer framework

I get this message from the compiler when using MPPlot:

Class MPButton is implemented in both /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks//MediaPlayer.framework/MediaPlayer and ...

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.