Files
aqdiagram/src/lib/aqdiagram/graph/g_draw_data.h
Martin Preuss d0490c01db Initial commit.
2022-03-24 20:49:19 +01:00

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