25 lines
704 B
C
25 lines
704 B
C
/****************************************************************************
|
|
* This file is part of the project AqDiagram.
|
|
* AqDiagram (c) by 2022 Martin Preuss, all rights reserved.
|
|
*
|
|
* The license for this file can be found in the file COPYING which you
|
|
* should have received along with this file.
|
|
****************************************************************************/
|
|
|
|
|
|
#ifndef AQDG_G_DRAW_DATA_H
|
|
#define AQDG_G_DRAW_DATA_H
|
|
|
|
|
|
#include <aqdiagram/graph/graph.h>
|
|
|
|
|
|
void AQDG_Graph_DrawDataAsLine(AQDG_GRAPH *gr, int level, int penId);
|
|
void AQDG_Graph_DrawDataAsBars(AQDG_GRAPH *gr, int level, int penId);
|
|
void AQDG_Graph_DrawDataAsPoints(AQDG_GRAPH *gr, int level, int penId);
|
|
|
|
|
|
|
|
#endif
|
|
|