Skip to content

Latest commit

 

History

History
122 lines (72 loc) · 3.07 KB

NEWS.md

File metadata and controls

122 lines (72 loc) · 3.07 KB

1.5.1

API

  • 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)

1.5.0

New feature

  • Configure legend font
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

1.4.0

New feature

  • 70370e Import your own timestamp unaware data collection

1.3.3

API

  • e36b6b Can now retrieve underlying Values object from Serie
  • 6fc2f4 Can now clear Values object from Serie

1.3.2

New feature

  • Open LiveChart Valadoc to public

Fixes

  • c77e2c Wrong default Path colors

Misc

  • Improve documentation

Internals

  • Merge source files

1.3.1

Misc

  • Create Valadoc

Internals

  • Merge source files
  • Remove obsolete Makefile

1.3.0

New features

  • 8fe363 Configurate main axis (abscissa and ordinate lines) color, line width and dash style

API change

  • 79e96b Chart config is now a public chart attribute

Internals

  • db7766 Axis class type is replaced with more convenient Path class.

Misc

  • Improve documentation

1.2.1

Internal changes

  • 24258e Internally, structs Axis and Labels are replaced by classes
  • Improve tests

1.2.0

New features

  • 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

1.1.0

New features

  • Grid and legend can be hidden