Как нарисовать динамический график? - PullRequest
2 голосов
/ 07 апреля 2011

Я должен нарисовать динамический график данных из базы данных в Android

Любой пример кода по этому вопросу будет оценен.

Ответы [ 2 ]

1 голос
/ 07 апреля 2011

Мне нравится GraphViz для создания графиков в виде файлов .gif.

0 голосов
/ 07 апреля 2011

Итак ... много ... графических вопросов ...

Читайте здесь: https://stackoverflow.com/questions/5156740/im-looking-for-fancy-charts-library-for-android/5157576#5157576

Бета-версия TeeChart общедоступна: http://steema.com/entry/60

Может сильноРекомендую TeeChart, это отличная библиотека.Я использовал это некоторое время сейчас.Поскольку я еще нигде этого не написал, вот мой документ с практическими рекомендациями:

TeeChart info:

Disable 3D:            chart.getAspect().setView3D(false);
Disable Legend:        chart.getLegend().setVisible(false);
Disable footer:     chart.getFooter().setVisible(false);
Disable header:     chart.getHeader().setVisible(false);

SOLVED - How to set marks to data value instead of cylinder number?
    For a Bar data-set: bar.getMarks().setStyle(MarksStyle.VALUE);

SOLVED - How to move the marks closer to the chart rectangle?
    bar.getMarks().setArrowLength(5); - or negative values to put them on top of the bar

SOLVED - Different styles:
    bar.setBarStyle(BarStyle.RECTANGLE);

SOLVED - How do I put a heavier color reference (in terms of readability) on the legend? Thicker (higher) line, not wider
    chart.getLegend().setColorWidth(100); makes it wider, but not thicker or anything
    chart.getLegend().setFontSeriesColor(true); helps with the issue by also coloring the text
    line.getLinePen().setWidth(5); works, but it will change the width of the line as well.
    No legend callback yet.


SOLVED - How do I make the lines thicker in a graph?
    line.getLinePen().setWidth(5); works, but it will change the width of the Legend as well.

SOLVED - How do I change the color of labels on axes?
        chart.getAxes().getLeft().getLabels().getFont().setColor(Color.WHITE);
        chart.getAxes().getBottom().getLabels().getFont().setColor(Color.WHITE);


SOLVED WORKAROUND - How do I set the background color of the chart itself? Tried so far (the TChart methods that take a Color from the TChart Color class, not the View methods) - only managed to make the 'surrounding' area black.
        chart.setBackground(Color.BLACK);
        chart.getCanvas().setBackColor(Color.BLACK);
        chart.getGraphics3D().setBackColor(Color.BLACK);
            ---> WORKAROUND: Use the setBackground above, then use: chart.getWalls().getBack().setVisible(false); --- setColor() on walls is bugged?


SOLVED - How to choose the bounds of a chart manually?
    chart.getAxes().getLeft().setAutomatic(false);
    chart.getAxes().getLeft().setMinMax(-2, 2);
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...