- add
chart.add_value_by_index(int serie_index, double value)
method, to add a value to a serie given its serie_index
(unlike chart.add_value()
which takes the serie as argument)
var chart = new LiveChart.Chart(config);
var legend = vhart.legend;
legend.labels.font.size = 12; // uint8 In pixels
legend.labels.font.color = {1.0, 0.0, 0.0, 1.0}; // Gdk.RGBA
legend.labels.font.weight = Cairo.FontWeight.BOLD; // Cairo.FontWeight
legend.labels.font.slant = Cairo.FontSlant.ITALIC;// Cairo.FontSlant
- Configure axis labels font
var labels;
labels = config.x_axis.labels;
//or
labels = config.y_axis.labels;
labels.font.size = 12; // uint8 In pixels
labels.font.color = {1.0, 0.0, 0.0, 1.0}; // Gdk.RGBA
labels.font.weight = Cairo.FontWeight.BOLD; // Cairo.FontWeight
labels.font.slant = Cairo.FontSlant.ITALIC;// Cairo.FontSlant
- Improved legend labels vertical alignement
- 70370e Import your own timestamp unaware data collection
- e36b6b Can now retrieve underlying
Values
object from Serie
- 6fc2f4 Can now clear
Values
object from Serie
- Open LiveChart Valadoc to public
- c77e2c Wrong default Path colors
- Merge source files
- Remove obsolete Makefile
- 8fe363 Configurate main axis (abscissa and ordinate lines) color, line width and dash style
- 79e96b Chart config is now a public chart attribute
- db7766 Axis class type is replaced with more convenient Path class.
- 24258e Internally, structs Axis and Labels are replaced by classes
- Improve tests
- Configurate guidelines color, line width and dash style
- Guidelines can be hidden independently from the whole grid
- Main axes (abscissa and ordinate lines) can be hidden independently from the whole grid
- Time and value labels can be hidden
- Auto padding configuration is not
nullable
, use LiveChart.AutoPadding.NONE
instead
- Add license, release badges to README
- Grid and legend can be hidden