diff options
author | Joel Bodenmann <joel.bodenmann@hevs.ch> | 2012-10-24 18:52:25 +0200 |
---|---|---|
committer | Joel Bodenmann <joel.bodenmann@hevs.ch> | 2012-10-24 18:52:25 +0200 |
commit | 5c6f31741a0158559e9f0be427e7667e56602c90 (patch) | |
tree | 8f169be62540b5f24c5a7dd64a2b51736ab30024 /include | |
parent | e121b31a70c4fd8f8d29f7698a2f1c6fb9c62f30 (diff) | |
download | uGFX-5c6f31741a0158559e9f0be427e7667e56602c90.tar.gz uGFX-5c6f31741a0158559e9f0be427e7667e56602c90.tar.bz2 uGFX-5c6f31741a0158559e9f0be427e7667e56602c90.zip |
graph - different axis and grid color
Diffstat (limited to 'include')
-rw-r--r-- | include/graph.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/graph.h b/include/graph.h index 14bae2b0..cd709c7c 100644 --- a/include/graph.h +++ b/include/graph.h @@ -31,7 +31,8 @@ typedef struct _Graph { uint16_t grid_size; uint16_t dot_space; bool_t full_grid; - color_t color; + color_t axis_color; + color_t grid_color; } Graph; #ifdef __cplusplus |