From 010b767263e6dd7fbba4c0e42121365f0928ef60 Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Sat, 16 Dec 2023 10:20:04 +0900 Subject: [PATCH 1/3] Use meson instead of Makefile to generate docs --- Makefile | 17 ----------------- meson.build | 23 +++++++++++++++++++++++ meson_options.txt | 1 + 3 files changed, 24 insertions(+), 17 deletions(-) delete mode 100644 Makefile create mode 100644 meson_options.txt diff --git a/Makefile b/Makefile deleted file mode 100644 index 1ba41ba..0000000 --- a/Makefile +++ /dev/null @@ -1,17 +0,0 @@ - -.PHONY: docs - -docs: - rm -rf docs - valadoc src/area.vala src/axis.vala src/background.vala src/bar.vala src/bounds.vala src/chart.vala \ - src/config.vala src/drawable.vala src/font.vala src/grid.vala \ - src/labels.vala src/legend.vala src/line_area.vala src/line.vala src/path.vala \ - src/points.vala src/serie.vala src/serie_renderer.vala src/series.vala src/smooth_line_area.vala src/smooth_line.vala \ - src/threshold_line.vala src/utils.vala src/values.vala \ - -o Livechart --pkg=gtk4 --pkg=gee-0.8 - mv Livechart docs - - - - - diff --git a/meson.build b/meson.build index 521c40b..a0cae7e 100644 --- a/meson.build +++ b/meson.build @@ -23,3 +23,26 @@ deps = [ subdir('src') subdir('tests') subdir('examples') + +if get_option('docs') + outdir = 'docs' + + custom_target( + 'valadoc', + command: [ + find_program('valadoc'), + sources, + '--package-name=Livechart', + '--package-version=' + meson.project_version(), + '--verbose', + '--force', + '--pkg=gtk4', + '--pkg=gee-0.8', + '--target-glib=2.50', + '-o', meson.project_source_root() / outdir + ], + build_by_default: true, + output: outdir, + depends: livechart_lib + ) +endif diff --git a/meson_options.txt b/meson_options.txt new file mode 100644 index 0000000..35b9bf8 --- /dev/null +++ b/meson_options.txt @@ -0,0 +1 @@ +option('docs', type: 'boolean', value: false, description: 'Whether to generate docs') From 8c0355b19e7de9b2df93dde28bd148864f84322f Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Sat, 16 Dec 2023 10:39:21 +0900 Subject: [PATCH 2/3] Update docs with meson --- docs/Livechart/LiveChart.Area.html | 4 +- docs/Livechart/LiveChart.Background.html | 4 +- docs/Livechart/LiveChart.Bar.html | 6 +- docs/Livechart/LiveChart.BezierCurve.c0.html | 47 ++ docs/Livechart/LiveChart.BezierCurve.c1.html | 47 ++ docs/Livechart/LiveChart.BezierCurve.c2.html | 47 ++ docs/Livechart/LiveChart.BezierCurve.c3.html | 47 ++ docs/Livechart/LiveChart.BezierCurve.html | 78 +++ ...t.BezierIntersector.BezierIntersector.html | 45 ++ .../LiveChart.BezierIntersector.html | 93 ++++ ...LiveChart.BezierIntersector.intersect.html | 45 ++ docs/Livechart/LiveChart.Boundaries.html | 8 +- docs/Livechart/LiveChart.Boundary.html | 6 +- docs/Livechart/LiveChart.BoundingBox.html | 10 +- docs/Livechart/LiveChart.Chart.Chart.html | 2 + docs/Livechart/LiveChart.Chart.add_serie.html | 2 + ...hart.add_unaware_timestamp_collection.html | 2 + ...unaware_timestamp_collection_by_index.html | 2 + docs/Livechart/LiveChart.Chart.add_value.html | 2 + .../LiveChart.Chart.add_value_by_index.html | 2 + .../Livechart/LiveChart.Chart.background.html | 4 +- docs/Livechart/LiveChart.Chart.config.html | 2 + docs/Livechart/LiveChart.Chart.grid.html | 2 + docs/Livechart/LiveChart.Chart.html | 381 ++++++------- docs/Livechart/LiveChart.Chart.legend.html | 2 + .../LiveChart.Chart.refresh_every.html | 4 +- .../LiveChart.Chart.remove_all_series.html | 59 ++ .../LiveChart.Chart.remove_serie.html | 59 ++ docs/Livechart/LiveChart.Chart.series.html | 2 + docs/Livechart/LiveChart.Chart.to_png.html | 2 + docs/Livechart/LiveChart.Colorable.html | 9 +- docs/Livechart/LiveChart.Config.Config.html | 1 + .../LiveChart.Config.boundaries.html | 1 + .../Livechart/LiveChart.Config.configure.html | 1 + docs/Livechart/LiveChart.Config.height.html | 1 + docs/Livechart/LiveChart.Config.html | 7 +- docs/Livechart/LiveChart.Config.padding.html | 1 + docs/Livechart/LiveChart.Config.time.html | 52 ++ docs/Livechart/LiveChart.Config.width.html | 1 + docs/Livechart/LiveChart.Config.x_axis.html | 1 + docs/Livechart/LiveChart.Config.y_axis.html | 1 + docs/Livechart/LiveChart.Coord.html | 68 +++ docs/Livechart/LiveChart.Coord.x.html | 45 ++ docs/Livechart/LiveChart.Coord.y.html | 45 ++ ...ossRegionResolver.CrossRegionResolver.html | 50 ++ ...esolver.has_at_least_one_point_within.html | 50 ++ .../LiveChart.CrossRegionResolver.html | 166 ++++++ ...ionResolver.is_entering_by_the_bottom.html | 50 ++ ...RegionResolver.is_entering_by_the_top.html | 50 ++ ...gionResolver.is_leaving_by_the_bottom.html | 50 ++ ...sRegionResolver.is_leaving_by_the_top.html | 50 ++ ...veChart.CrossRegionResolver.is_within.html | 50 ++ docs/Livechart/LiveChart.Dash.html | 2 +- docs/Livechart/LiveChart.Drawable.html | 17 +- docs/Livechart/LiveChart.Font.html | 2 +- docs/Livechart/LiveChart.GetIntersection.html | 101 ++++ docs/Livechart/LiveChart.Grid.html | 12 +- .../Livechart/LiveChart.HorizontalLegend.html | 22 +- .../LiveChart.Intersection.Intersection.html | 54 ++ ...tion.Intersection.without_entry_point.html | 54 ++ .../LiveChart.Intersection.close.html | 54 ++ .../LiveChart.Intersection.end_x.html | 54 ++ .../LiveChart.Intersection.entered_at.html | 54 ++ .../LiveChart.Intersection.exited_at.html | 54 ++ docs/Livechart/LiveChart.Intersection.html | 190 +++++++ .../LiveChart.Intersection.is_closed.html | 54 ++ .../LiveChart.Intersection.is_open.html | 54 ++ .../LiveChart.Intersection.region.html | 54 ++ .../LiveChart.Intersection.start_x.html | 54 ++ .../LiveChart.Intersection.update.html | 54 ++ .../LiveChart.Intersections.@foreach.html | 53 ++ .../LiveChart.Intersections.@get.html | 53 ++ ...LiveChart.Intersections.Intersections.html | 52 ++ .../LiveChart.Intersections.close.html | 53 ++ ...hart.Intersections.get_current_region.html | 53 ++ ...ersections.has_an_opened_intersection.html | 53 ++ docs/Livechart/LiveChart.Intersections.html | 179 ++++++ .../LiveChart.Intersections.open.html | 53 ++ ...Intersections.open_without_entrypoint.html | 53 ++ .../LiveChart.Intersections.size.html | 53 ++ .../LiveChart.Intersections.update.html | 53 ++ docs/Livechart/LiveChart.Intersector.html | 81 +++ .../LiveChart.Intersector.intersect.html | 44 ++ docs/Livechart/LiveChart.Labels.html | 2 +- docs/Livechart/LiveChart.Legend.Legend.html | 2 + .../LiveChart.Legend.add_legend.html | 2 + .../LiveChart.Legend.bounding_box.html | 2 + docs/Livechart/LiveChart.Legend.draw.html | 2 + .../LiveChart.Legend.get_bounding_box.html | 2 + docs/Livechart/LiveChart.Legend.html | 26 +- docs/Livechart/LiveChart.Legend.labels.html | 2 + .../LiveChart.Legend.main_color.html | 2 + .../LiveChart.Legend.remove_all_legend.html | 54 ++ .../LiveChart.Legend.remove_legend.html | 54 ++ docs/Livechart/LiveChart.Legend.series.html | 2 + docs/Livechart/LiveChart.Legend.visible.html | 2 + docs/Livechart/LiveChart.Line.html | 22 +- docs/Livechart/LiveChart.LineArea.html | 24 +- ....MaxBoundLine.MaxBoundLine.from_serie.html | 46 ++ .../LiveChart.MaxBoundLine.MaxBoundLine.html | 45 ++ .../LiveChart.MaxBoundLine.draw.html | 46 ++ docs/Livechart/LiveChart.MaxBoundLine.html | 193 +++++++ ....MinBoundLine.MinBoundLine.from_serie.html | 46 ++ .../LiveChart.MinBoundLine.MinBoundLine.html | 46 ++ .../LiveChart.MinBoundLine.draw.html | 46 ++ docs/Livechart/LiveChart.MinBoundLine.html | 193 +++++++ docs/Livechart/LiveChart.NoopLegend.html | 22 +- docs/Livechart/LiveChart.Padding.html | 8 +- docs/Livechart/LiveChart.Path.Path.html | 2 +- docs/Livechart/LiveChart.Path.html | 8 +- docs/Livechart/LiveChart.Point.data.html | 47 ++ docs/Livechart/LiveChart.Point.height.html | 1 + docs/Livechart/LiveChart.Point.html | 11 +- docs/Livechart/LiveChart.Point.x.html | 1 + docs/Livechart/LiveChart.Point.y.html | 1 + docs/Livechart/LiveChart.Points.html | 6 +- .../LiveChart.Region.Region.between.html | 50 ++ docs/Livechart/LiveChart.Region.Region.html | 50 ++ .../LiveChart.Region.area_color.html | 50 ++ docs/Livechart/LiveChart.Region.handle.html | 50 ++ docs/Livechart/LiveChart.Region.html | 99 ++++ .../LiveChart.Region.line_color.html | 50 ++ .../LiveChart.Region.with_area_color.html | 50 ++ .../LiveChart.Region.with_line_color.html | 50 ++ ...LiveChart.RegionHandleResult.at_value.html | 45 ++ .../LiveChart.RegionHandleResult.html | 70 +++ .../LiveChart.RegionHandleResult.status.html | 45 ++ .../LiveChart.RegionHandleStatus.ENTER.html | 47 ++ .../LiveChart.RegionHandleStatus.EXIT.html | 47 ++ .../LiveChart.RegionHandleStatus.OUT.html | 47 ++ .../LiveChart.RegionHandleStatus.WITHIN.html | 47 ++ .../LiveChart.RegionHandleStatus.html | 59 ++ docs/Livechart/LiveChart.Segment.from.html | 45 ++ docs/Livechart/LiveChart.Segment.html | 68 +++ docs/Livechart/LiveChart.Segment.to.html | 45 ++ docs/Livechart/LiveChart.Serie.html | 18 +- docs/Livechart/LiveChart.SerieRenderer.html | 20 +- docs/Livechart/LiveChart.Series.@get.html | 2 + docs/Livechart/LiveChart.Series.Series.html | 2 + .../LiveChart.Series.get_by_name.html | 2 + docs/Livechart/LiveChart.Series.html | 18 +- docs/Livechart/LiveChart.Series.iterator.html | 2 + docs/Livechart/LiveChart.Series.register.html | 4 +- .../LiveChart.Series.remove_all.html | 50 ++ .../LiveChart.Series.remove_serie.html | 50 ++ .../LiveChart.SmoothLine.SmoothLine.html | 3 + docs/Livechart/LiveChart.SmoothLine.draw.html | 3 + ...Chart.SmoothLine.draw_regions_on_line.html | 49 ++ ...LiveChart.SmoothLine.draw_smooth_line.html | 5 +- docs/Livechart/LiveChart.SmoothLine.html | 45 +- .../LiveChart.SmoothLine.intersections.html | 49 ++ .../LiveChart.SmoothLine.region.html | 49 ++ ...veChart.SmoothLineArea.SmoothLineArea.html | 1 + .../LiveChart.SmoothLineArea.area_alpha.html | 1 + .../LiveChart.SmoothLineArea.draw.html | 1 + ...t.SmoothLineArea.draw_regions_on_area.html | 47 ++ docs/Livechart/LiveChart.SmoothLineArea.html | 32 +- .../LiveChart.Static.NamedValue.html | 74 +++ .../LiveChart.Static.NamedValue.name.html | 49 ++ .../LiveChart.Static.NamedValue.value.html | 49 ++ ...eChart.Static.StaticChart.StaticChart.html | 56 ++ ...iveChart.Static.StaticChart.add_serie.html | 56 ++ ...veChart.Static.StaticChart.background.html | 56 ++ .../LiveChart.Static.StaticChart.config.html | 56 ++ .../LiveChart.Static.StaticChart.grid.html | 56 ++ .../LiveChart.Static.StaticChart.html | 518 ++++++++++++++++++ .../LiveChart.Static.StaticChart.legend.html | 56 ++ .../LiveChart.Static.StaticChart.series.html | 56 ++ ...art.Static.StaticChart.set_categories.html | 56 ++ .../LiveChart.Static.StaticChart.to_png.html | 56 ++ ...atic.StaticGrid.ABSCISSA_TIME_PADDING.html | 62 +++ ...iveChart.Static.StaticGrid.StaticGrid.html | 61 +++ ...eChart.Static.StaticGrid.bounding_box.html | 62 +++ .../LiveChart.Static.StaticGrid.debug.html | 62 +++ .../LiveChart.Static.StaticGrid.draw.html | 62 +++ ...rt.Static.StaticGrid.get_bounding_box.html | 62 +++ .../LiveChart.Static.StaticGrid.html | 240 ++++++++ ...iveChart.Static.StaticGrid.main_color.html | 62 +++ ...art.Static.StaticGrid.render_abscissa.html | 62 +++ ...veChart.Static.StaticGrid.render_grid.html | 62 +++ ...eChart.Static.StaticGrid.render_hgrid.html | 62 +++ ...art.Static.StaticGrid.render_ordinate.html | 62 +++ ...eChart.Static.StaticGrid.render_vgrid.html | 62 +++ .../LiveChart.Static.StaticGrid.restore.html | 62 +++ ...Static.StaticGrid.update_bounding_box.html | 62 +++ .../LiveChart.Static.StaticGrid.visible.html | 62 +++ ...iveChart.Static.StaticLine.StaticLine.html | 50 ++ .../LiveChart.Static.StaticLine.draw.html | 50 ++ ...LiveChart.Static.StaticLine.draw_line.html | 50 ++ .../LiveChart.Static.StaticLine.html | 199 +++++++ .../LiveChart.Static.StaticPoints.@get.html | 57 ++ ...hart.Static.StaticPoints.StaticPoints.html | 56 ++ .../LiveChart.Static.StaticPoints.add.html | 57 ++ .../LiveChart.Static.StaticPoints.after.html | 57 ++ .../LiveChart.Static.StaticPoints.bounds.html | 57 ++ .../LiveChart.Static.StaticPoints.create.html | 57 ++ .../LiveChart.Static.StaticPoints.first.html | 57 ++ .../LiveChart.Static.StaticPoints.html | 191 +++++++ .../LiveChart.Static.StaticPoints.last.html | 57 ++ ...rt.Static.StaticPoints.realtime_delta.html | 57 ++ .../LiveChart.Static.StaticPoints.size.html | 57 ++ ...eChart.Static.StaticSerie.StaticSerie.html | 58 ++ .../LiveChart.Static.StaticSerie.add.html | 58 ++ .../LiveChart.Static.StaticSerie.clear.html | 58 ++ .../LiveChart.Static.StaticSerie.draw.html | 58 ++ ...t.Static.StaticSerie.get_bounding_box.html | 58 ++ ...veChart.Static.StaticSerie.get_values.html | 58 ++ .../LiveChart.Static.StaticSerie.html | 236 ++++++++ .../LiveChart.Static.StaticSerie.line.html | 58 ++ ...veChart.Static.StaticSerie.main_color.html | 58 ++ .../LiveChart.Static.StaticSerie.name.html | 58 ++ ...eChart.Static.StaticSerie.value_added.html | 58 ++ .../LiveChart.Static.StaticSerie.visible.html | 58 ++ ...aticSerieRenderer.StaticSerieRenderer.html | 57 ++ ...atic.StaticSerieRenderer.bounding_box.html | 57 ++ ...hart.Static.StaticSerieRenderer.debug.html | 57 ++ ...Chart.Static.StaticSerieRenderer.draw.html | 57 ++ ....StaticSerieRenderer.get_bounding_box.html | 57 ++ ...Static.StaticSerieRenderer.get_values.html | 57 ++ .../LiveChart.Static.StaticSerieRenderer.html | 230 ++++++++ ...ic.StaticSerieRenderer.is_out_of_area.html | 57 ++ ...Chart.Static.StaticSerieRenderer.line.html | 57 ++ ...art.Static.StaticSerieRenderer.values.html | 57 ++ ...rt.Static.StaticSerieRenderer.visible.html | 57 ++ .../LiveChart.Static.StaticSeries.@get.html | 52 ++ ...hart.Static.StaticSeries.StaticSeries.html | 52 ++ ...Chart.Static.StaticSeries.get_by_name.html | 52 ++ .../LiveChart.Static.StaticSeries.html | 160 ++++++ ...iveChart.Static.StaticSeries.iterator.html | 52 ++ ...iveChart.Static.StaticSeries.register.html | 52 ++ ...hart.Static.StaticValues.StaticValues.html | 49 ++ .../LiveChart.Static.StaticValues.add.html | 50 ++ .../LiveChart.Static.StaticValues.bounds.html | 50 ++ .../LiveChart.Static.StaticValues.html | 446 +++++++++++++++ docs/Livechart/LiveChart.Static.html | 66 +++ docs/Livechart/LiveChart.ThresholdLine.html | 18 +- docs/Livechart/LiveChart.Ticks.html | 2 +- .../LiveChart.TimeSeek.TimeSeek.html | 48 ++ .../LiveChart.TimeSeek.conv_sec.html | 49 ++ .../Livechart/LiveChart.TimeSeek.conv_us.html | 49 ++ .../Livechart/LiveChart.TimeSeek.current.html | 49 ++ .../LiveChart.TimeSeek.get_time_str.html | 49 ++ docs/Livechart/LiveChart.TimeSeek.html | 97 ++++ .../LiveChart.TimeSeek.set_range.html | 49 ++ .../Livechart/LiveChart.TimestampedValue.html | 2 +- docs/Livechart/LiveChart.Values.html | 50 +- docs/Livechart/LiveChart.XAxis.XAxis.html | 2 + docs/Livechart/LiveChart.XAxis.axis.html | 2 + docs/Livechart/LiveChart.XAxis.get_ratio.html | 2 + docs/Livechart/LiveChart.XAxis.html | 12 +- docs/Livechart/LiveChart.XAxis.labels.html | 2 + docs/Livechart/LiveChart.XAxis.lines.html | 2 + .../LiveChart.XAxis.show_fraction.html | 53 ++ .../LiveChart.XAxis.slide_timeline.html | 53 ++ .../LiveChart.XAxis.tick_interval.html | 2 + .../LiveChart.XAxis.tick_length.html | 2 + docs/Livechart/LiveChart.XAxis.visible.html | 2 + ...eChart.build_bezier_curve_from_points.html | 101 ++++ docs/Livechart/LiveChart.cap.html | 18 + .../LiveChart.find_intersections_between.html | 101 ++++ .../LiveChart.format_for_y_axis.html | 18 + docs/Livechart/LiveChart.golden_divisors.html | 18 + .../LiveChart.has_fractional_part.html | 18 + docs/Livechart/LiveChart.html | 51 ++ docs/Livechart/img/LiveChart.Area.png | Bin 8567 -> 10155 bytes docs/Livechart/img/LiveChart.Background.png | Bin 9989 -> 11598 bytes docs/Livechart/img/LiveChart.Bar.png | Bin 12255 -> 14039 bytes docs/Livechart/img/LiveChart.BezierCurve.png | Bin 0 -> 3134 bytes .../img/LiveChart.BezierIntersector.png | Bin 0 -> 7609 bytes docs/Livechart/img/LiveChart.Boundaries.png | Bin 3265 -> 3615 bytes docs/Livechart/img/LiveChart.Boundary.png | Bin 3273 -> 3565 bytes docs/Livechart/img/LiveChart.BoundingBox.png | Bin 3619 -> 3986 bytes docs/Livechart/img/LiveChart.Bounds.png | Bin 5772 -> 6387 bytes docs/Livechart/img/LiveChart.Chart.png | Bin 27024 -> 38526 bytes docs/Livechart/img/LiveChart.Colorable.png | Bin 5291 -> 5896 bytes docs/Livechart/img/LiveChart.Config.png | Bin 2975 -> 3218 bytes docs/Livechart/img/LiveChart.Coord.png | Bin 0 -> 2752 bytes .../img/LiveChart.CrossRegionResolver.png | Bin 0 -> 7038 bytes docs/Livechart/img/LiveChart.Dash.png | Bin 2516 -> 2766 bytes docs/Livechart/img/LiveChart.Drawable.png | Bin 5634 -> 6098 bytes docs/Livechart/img/LiveChart.Font.png | Bin 2554 -> 2793 bytes docs/Livechart/img/LiveChart.Grid.png | Bin 8878 -> 10379 bytes .../img/LiveChart.HorizontalLegend.png | Bin 13090 -> 15067 bytes docs/Livechart/img/LiveChart.Intersection.png | Bin 0 -> 6273 bytes .../Livechart/img/LiveChart.Intersections.png | Bin 0 -> 6199 bytes docs/Livechart/img/LiveChart.Intersector.png | Bin 0 -> 3240 bytes docs/Livechart/img/LiveChart.Labels.png | Bin 2582 -> 2840 bytes docs/Livechart/img/LiveChart.Legend.png | Bin 8993 -> 10574 bytes docs/Livechart/img/LiveChart.Line.png | Bin 12137 -> 13993 bytes docs/Livechart/img/LiveChart.LineArea.png | Bin 15187 -> 17439 bytes docs/Livechart/img/LiveChart.MaxBoundLine.png | Bin 0 -> 15558 bytes docs/Livechart/img/LiveChart.MinBoundLine.png | Bin 0 -> 15354 bytes docs/Livechart/img/LiveChart.NoopLegend.png | Bin 12993 -> 14977 bytes docs/Livechart/img/LiveChart.Padding.png | Bin 3021 -> 3285 bytes docs/Livechart/img/LiveChart.Path.png | Bin 4847 -> 5259 bytes docs/Livechart/img/LiveChart.Point.png | Bin 2579 -> 2829 bytes docs/Livechart/img/LiveChart.Points.png | Bin 5354 -> 5950 bytes docs/Livechart/img/LiveChart.Region.png | Bin 0 -> 3369 bytes .../img/LiveChart.RegionHandleResult.png | Bin 0 -> 4515 bytes docs/Livechart/img/LiveChart.Segment.png | Bin 0 -> 3441 bytes docs/Livechart/img/LiveChart.Serie.png | Bin 9968 -> 13364 bytes .../Livechart/img/LiveChart.SerieRenderer.png | Bin 9407 -> 10949 bytes docs/Livechart/img/LiveChart.Series.png | Bin 5175 -> 5810 bytes docs/Livechart/img/LiveChart.SmoothLine.png | Bin 12952 -> 14870 bytes .../img/LiveChart.SmoothLineArea.png | Bin 16820 -> 19198 bytes .../img/LiveChart.Static.NamedValue.png | Bin 0 -> 4400 bytes .../img/LiveChart.Static.StaticChart.png | Bin 0 -> 39344 bytes .../img/LiveChart.Static.StaticGrid.png | Bin 0 -> 10972 bytes .../img/LiveChart.Static.StaticLine.png | Bin 0 -> 15026 bytes .../img/LiveChart.Static.StaticPoints.png | Bin 0 -> 6660 bytes .../img/LiveChart.Static.StaticSerie.png | Bin 0 -> 13749 bytes .../LiveChart.Static.StaticSerieRenderer.png | Bin 0 -> 11321 bytes .../img/LiveChart.Static.StaticSeries.png | Bin 0 -> 6252 bytes .../img/LiveChart.Static.StaticValues.png | Bin 0 -> 42840 bytes .../Livechart/img/LiveChart.ThresholdLine.png | Bin 13024 -> 15004 bytes docs/Livechart/img/LiveChart.Ticks.png | Bin 2766 -> 3027 bytes docs/Livechart/img/LiveChart.TimeSeek.png | Bin 0 -> 3337 bytes .../img/LiveChart.TimestampedValue.png | Bin 3757 -> 4170 bytes docs/Livechart/img/LiveChart.Values.png | Bin 35308 -> 42107 bytes docs/Livechart/img/LiveChart.XAxis.png | Bin 2998 -> 3298 bytes docs/Livechart/img/LiveChart.YAxis.png | Bin 2893 -> 3235 bytes docs/Livechart/index.htm | 46 ++ docs/abstractclass.svg | 180 ++++++ docs/abstractmethod.svg | 163 ++++++ docs/abstractproperty.svg | 138 +++++ docs/class.svg | 168 ++++++ docs/coll_close.svg | 61 +++ docs/coll_open.svg | 61 +++ docs/constant.svg | 170 ++++++ docs/constructor.svg | 237 ++++++++ docs/delegate.svg | 126 +++++ docs/devhelpstyle.css | 94 ++-- docs/enum.svg | 304 ++++++++++ docs/enumvalue.svg | 120 ++++ docs/errorcode.svg | 138 +++++ docs/errordomain.svg | 322 +++++++++++ docs/field.svg | 170 ++++++ docs/index.html | 14 +- docs/interface.svg | 42 ++ docs/method.svg | 151 +++++ docs/namespace.svg | 36 ++ docs/package.svg | 40 ++ docs/packages.svg | 83 +++ docs/property.svg | 126 +++++ docs/scripts.js | 4 +- docs/signal.svg | 116 ++++ docs/staticmethod.svg | 163 ++++++ docs/struct.svg | 148 +++++ docs/style.css | 93 +++- docs/tip.svg | 50 ++ docs/virtualmethod.svg | 163 ++++++ docs/virtualproperty.svg | 138 +++++ docs/warning.svg | 118 ++++ docs/wikistyle.css | 102 ++-- 354 files changed, 16654 insertions(+), 553 deletions(-) create mode 100644 docs/Livechart/LiveChart.BezierCurve.c0.html create mode 100644 docs/Livechart/LiveChart.BezierCurve.c1.html create mode 100644 docs/Livechart/LiveChart.BezierCurve.c2.html create mode 100644 docs/Livechart/LiveChart.BezierCurve.c3.html create mode 100644 docs/Livechart/LiveChart.BezierCurve.html create mode 100644 docs/Livechart/LiveChart.BezierIntersector.BezierIntersector.html create mode 100644 docs/Livechart/LiveChart.BezierIntersector.html create mode 100644 docs/Livechart/LiveChart.BezierIntersector.intersect.html create mode 100644 docs/Livechart/LiveChart.Chart.remove_all_series.html create mode 100644 docs/Livechart/LiveChart.Chart.remove_serie.html create mode 100644 docs/Livechart/LiveChart.Config.time.html create mode 100644 docs/Livechart/LiveChart.Coord.html create mode 100644 docs/Livechart/LiveChart.Coord.x.html create mode 100644 docs/Livechart/LiveChart.Coord.y.html create mode 100644 docs/Livechart/LiveChart.CrossRegionResolver.CrossRegionResolver.html create mode 100644 docs/Livechart/LiveChart.CrossRegionResolver.has_at_least_one_point_within.html create mode 100644 docs/Livechart/LiveChart.CrossRegionResolver.html create mode 100644 docs/Livechart/LiveChart.CrossRegionResolver.is_entering_by_the_bottom.html create mode 100644 docs/Livechart/LiveChart.CrossRegionResolver.is_entering_by_the_top.html create mode 100644 docs/Livechart/LiveChart.CrossRegionResolver.is_leaving_by_the_bottom.html create mode 100644 docs/Livechart/LiveChart.CrossRegionResolver.is_leaving_by_the_top.html create mode 100644 docs/Livechart/LiveChart.CrossRegionResolver.is_within.html create mode 100644 docs/Livechart/LiveChart.GetIntersection.html create mode 100644 docs/Livechart/LiveChart.Intersection.Intersection.html create mode 100644 docs/Livechart/LiveChart.Intersection.Intersection.without_entry_point.html create mode 100644 docs/Livechart/LiveChart.Intersection.close.html create mode 100644 docs/Livechart/LiveChart.Intersection.end_x.html create mode 100644 docs/Livechart/LiveChart.Intersection.entered_at.html create mode 100644 docs/Livechart/LiveChart.Intersection.exited_at.html create mode 100644 docs/Livechart/LiveChart.Intersection.html create mode 100644 docs/Livechart/LiveChart.Intersection.is_closed.html create mode 100644 docs/Livechart/LiveChart.Intersection.is_open.html create mode 100644 docs/Livechart/LiveChart.Intersection.region.html create mode 100644 docs/Livechart/LiveChart.Intersection.start_x.html create mode 100644 docs/Livechart/LiveChart.Intersection.update.html create mode 100644 docs/Livechart/LiveChart.Intersections.@foreach.html create mode 100644 docs/Livechart/LiveChart.Intersections.@get.html create mode 100644 docs/Livechart/LiveChart.Intersections.Intersections.html create mode 100644 docs/Livechart/LiveChart.Intersections.close.html create mode 100644 docs/Livechart/LiveChart.Intersections.get_current_region.html create mode 100644 docs/Livechart/LiveChart.Intersections.has_an_opened_intersection.html create mode 100644 docs/Livechart/LiveChart.Intersections.html create mode 100644 docs/Livechart/LiveChart.Intersections.open.html create mode 100644 docs/Livechart/LiveChart.Intersections.open_without_entrypoint.html create mode 100644 docs/Livechart/LiveChart.Intersections.size.html create mode 100644 docs/Livechart/LiveChart.Intersections.update.html create mode 100644 docs/Livechart/LiveChart.Intersector.html create mode 100644 docs/Livechart/LiveChart.Intersector.intersect.html create mode 100644 docs/Livechart/LiveChart.Legend.remove_all_legend.html create mode 100644 docs/Livechart/LiveChart.Legend.remove_legend.html create mode 100644 docs/Livechart/LiveChart.MaxBoundLine.MaxBoundLine.from_serie.html create mode 100644 docs/Livechart/LiveChart.MaxBoundLine.MaxBoundLine.html create mode 100644 docs/Livechart/LiveChart.MaxBoundLine.draw.html create mode 100644 docs/Livechart/LiveChart.MaxBoundLine.html create mode 100644 docs/Livechart/LiveChart.MinBoundLine.MinBoundLine.from_serie.html create mode 100644 docs/Livechart/LiveChart.MinBoundLine.MinBoundLine.html create mode 100644 docs/Livechart/LiveChart.MinBoundLine.draw.html create mode 100644 docs/Livechart/LiveChart.MinBoundLine.html create mode 100644 docs/Livechart/LiveChart.Point.data.html create mode 100644 docs/Livechart/LiveChart.Region.Region.between.html create mode 100644 docs/Livechart/LiveChart.Region.Region.html create mode 100644 docs/Livechart/LiveChart.Region.area_color.html create mode 100644 docs/Livechart/LiveChart.Region.handle.html create mode 100644 docs/Livechart/LiveChart.Region.html create mode 100644 docs/Livechart/LiveChart.Region.line_color.html create mode 100644 docs/Livechart/LiveChart.Region.with_area_color.html create mode 100644 docs/Livechart/LiveChart.Region.with_line_color.html create mode 100644 docs/Livechart/LiveChart.RegionHandleResult.at_value.html create mode 100644 docs/Livechart/LiveChart.RegionHandleResult.html create mode 100644 docs/Livechart/LiveChart.RegionHandleResult.status.html create mode 100644 docs/Livechart/LiveChart.RegionHandleStatus.ENTER.html create mode 100644 docs/Livechart/LiveChart.RegionHandleStatus.EXIT.html create mode 100644 docs/Livechart/LiveChart.RegionHandleStatus.OUT.html create mode 100644 docs/Livechart/LiveChart.RegionHandleStatus.WITHIN.html create mode 100644 docs/Livechart/LiveChart.RegionHandleStatus.html create mode 100644 docs/Livechart/LiveChart.Segment.from.html create mode 100644 docs/Livechart/LiveChart.Segment.html create mode 100644 docs/Livechart/LiveChart.Segment.to.html create mode 100644 docs/Livechart/LiveChart.Series.remove_all.html create mode 100644 docs/Livechart/LiveChart.Series.remove_serie.html create mode 100644 docs/Livechart/LiveChart.SmoothLine.draw_regions_on_line.html create mode 100644 docs/Livechart/LiveChart.SmoothLine.intersections.html create mode 100644 docs/Livechart/LiveChart.SmoothLine.region.html create mode 100644 docs/Livechart/LiveChart.SmoothLineArea.draw_regions_on_area.html create mode 100644 docs/Livechart/LiveChart.Static.NamedValue.html create mode 100644 docs/Livechart/LiveChart.Static.NamedValue.name.html create mode 100644 docs/Livechart/LiveChart.Static.NamedValue.value.html create mode 100644 docs/Livechart/LiveChart.Static.StaticChart.StaticChart.html create mode 100644 docs/Livechart/LiveChart.Static.StaticChart.add_serie.html create mode 100644 docs/Livechart/LiveChart.Static.StaticChart.background.html create mode 100644 docs/Livechart/LiveChart.Static.StaticChart.config.html create mode 100644 docs/Livechart/LiveChart.Static.StaticChart.grid.html create mode 100644 docs/Livechart/LiveChart.Static.StaticChart.html create mode 100644 docs/Livechart/LiveChart.Static.StaticChart.legend.html create mode 100644 docs/Livechart/LiveChart.Static.StaticChart.series.html create mode 100644 docs/Livechart/LiveChart.Static.StaticChart.set_categories.html create mode 100644 docs/Livechart/LiveChart.Static.StaticChart.to_png.html create mode 100644 docs/Livechart/LiveChart.Static.StaticGrid.ABSCISSA_TIME_PADDING.html create mode 100644 docs/Livechart/LiveChart.Static.StaticGrid.StaticGrid.html create mode 100644 docs/Livechart/LiveChart.Static.StaticGrid.bounding_box.html create mode 100644 docs/Livechart/LiveChart.Static.StaticGrid.debug.html create mode 100644 docs/Livechart/LiveChart.Static.StaticGrid.draw.html create mode 100644 docs/Livechart/LiveChart.Static.StaticGrid.get_bounding_box.html create mode 100644 docs/Livechart/LiveChart.Static.StaticGrid.html create mode 100644 docs/Livechart/LiveChart.Static.StaticGrid.main_color.html create mode 100644 docs/Livechart/LiveChart.Static.StaticGrid.render_abscissa.html create mode 100644 docs/Livechart/LiveChart.Static.StaticGrid.render_grid.html create mode 100644 docs/Livechart/LiveChart.Static.StaticGrid.render_hgrid.html create mode 100644 docs/Livechart/LiveChart.Static.StaticGrid.render_ordinate.html create mode 100644 docs/Livechart/LiveChart.Static.StaticGrid.render_vgrid.html create mode 100644 docs/Livechart/LiveChart.Static.StaticGrid.restore.html create mode 100644 docs/Livechart/LiveChart.Static.StaticGrid.update_bounding_box.html create mode 100644 docs/Livechart/LiveChart.Static.StaticGrid.visible.html create mode 100644 docs/Livechart/LiveChart.Static.StaticLine.StaticLine.html create mode 100644 docs/Livechart/LiveChart.Static.StaticLine.draw.html create mode 100644 docs/Livechart/LiveChart.Static.StaticLine.draw_line.html create mode 100644 docs/Livechart/LiveChart.Static.StaticLine.html create mode 100644 docs/Livechart/LiveChart.Static.StaticPoints.@get.html create mode 100644 docs/Livechart/LiveChart.Static.StaticPoints.StaticPoints.html create mode 100644 docs/Livechart/LiveChart.Static.StaticPoints.add.html create mode 100644 docs/Livechart/LiveChart.Static.StaticPoints.after.html create mode 100644 docs/Livechart/LiveChart.Static.StaticPoints.bounds.html create mode 100644 docs/Livechart/LiveChart.Static.StaticPoints.create.html create mode 100644 docs/Livechart/LiveChart.Static.StaticPoints.first.html create mode 100644 docs/Livechart/LiveChart.Static.StaticPoints.html create mode 100644 docs/Livechart/LiveChart.Static.StaticPoints.last.html create mode 100644 docs/Livechart/LiveChart.Static.StaticPoints.realtime_delta.html create mode 100644 docs/Livechart/LiveChart.Static.StaticPoints.size.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSerie.StaticSerie.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSerie.add.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSerie.clear.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSerie.draw.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSerie.get_bounding_box.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSerie.get_values.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSerie.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSerie.line.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSerie.main_color.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSerie.name.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSerie.value_added.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSerie.visible.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSerieRenderer.StaticSerieRenderer.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSerieRenderer.bounding_box.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSerieRenderer.debug.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSerieRenderer.draw.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSerieRenderer.get_bounding_box.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSerieRenderer.get_values.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSerieRenderer.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSerieRenderer.is_out_of_area.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSerieRenderer.line.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSerieRenderer.values.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSerieRenderer.visible.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSeries.@get.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSeries.StaticSeries.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSeries.get_by_name.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSeries.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSeries.iterator.html create mode 100644 docs/Livechart/LiveChart.Static.StaticSeries.register.html create mode 100644 docs/Livechart/LiveChart.Static.StaticValues.StaticValues.html create mode 100644 docs/Livechart/LiveChart.Static.StaticValues.add.html create mode 100644 docs/Livechart/LiveChart.Static.StaticValues.bounds.html create mode 100644 docs/Livechart/LiveChart.Static.StaticValues.html create mode 100644 docs/Livechart/LiveChart.Static.html create mode 100644 docs/Livechart/LiveChart.TimeSeek.TimeSeek.html create mode 100644 docs/Livechart/LiveChart.TimeSeek.conv_sec.html create mode 100644 docs/Livechart/LiveChart.TimeSeek.conv_us.html create mode 100644 docs/Livechart/LiveChart.TimeSeek.current.html create mode 100644 docs/Livechart/LiveChart.TimeSeek.get_time_str.html create mode 100644 docs/Livechart/LiveChart.TimeSeek.html create mode 100644 docs/Livechart/LiveChart.TimeSeek.set_range.html create mode 100644 docs/Livechart/LiveChart.XAxis.show_fraction.html create mode 100644 docs/Livechart/LiveChart.XAxis.slide_timeline.html create mode 100644 docs/Livechart/LiveChart.build_bezier_curve_from_points.html create mode 100644 docs/Livechart/LiveChart.find_intersections_between.html create mode 100644 docs/Livechart/img/LiveChart.BezierCurve.png create mode 100644 docs/Livechart/img/LiveChart.BezierIntersector.png create mode 100644 docs/Livechart/img/LiveChart.Coord.png create mode 100644 docs/Livechart/img/LiveChart.CrossRegionResolver.png create mode 100644 docs/Livechart/img/LiveChart.Intersection.png create mode 100644 docs/Livechart/img/LiveChart.Intersections.png create mode 100644 docs/Livechart/img/LiveChart.Intersector.png create mode 100644 docs/Livechart/img/LiveChart.MaxBoundLine.png create mode 100644 docs/Livechart/img/LiveChart.MinBoundLine.png create mode 100644 docs/Livechart/img/LiveChart.Region.png create mode 100644 docs/Livechart/img/LiveChart.RegionHandleResult.png create mode 100644 docs/Livechart/img/LiveChart.Segment.png create mode 100644 docs/Livechart/img/LiveChart.Static.NamedValue.png create mode 100644 docs/Livechart/img/LiveChart.Static.StaticChart.png create mode 100644 docs/Livechart/img/LiveChart.Static.StaticGrid.png create mode 100644 docs/Livechart/img/LiveChart.Static.StaticLine.png create mode 100644 docs/Livechart/img/LiveChart.Static.StaticPoints.png create mode 100644 docs/Livechart/img/LiveChart.Static.StaticSerie.png create mode 100644 docs/Livechart/img/LiveChart.Static.StaticSerieRenderer.png create mode 100644 docs/Livechart/img/LiveChart.Static.StaticSeries.png create mode 100644 docs/Livechart/img/LiveChart.Static.StaticValues.png create mode 100644 docs/Livechart/img/LiveChart.TimeSeek.png create mode 100644 docs/abstractclass.svg create mode 100644 docs/abstractmethod.svg create mode 100644 docs/abstractproperty.svg create mode 100644 docs/class.svg create mode 100644 docs/coll_close.svg create mode 100644 docs/coll_open.svg create mode 100644 docs/constant.svg create mode 100644 docs/constructor.svg create mode 100644 docs/delegate.svg create mode 100644 docs/enum.svg create mode 100644 docs/enumvalue.svg create mode 100644 docs/errorcode.svg create mode 100644 docs/errordomain.svg create mode 100644 docs/field.svg create mode 100644 docs/interface.svg create mode 100644 docs/method.svg create mode 100644 docs/namespace.svg create mode 100644 docs/package.svg create mode 100644 docs/packages.svg create mode 100644 docs/property.svg create mode 100644 docs/signal.svg create mode 100644 docs/staticmethod.svg create mode 100644 docs/struct.svg create mode 100644 docs/tip.svg create mode 100644 docs/virtualmethod.svg create mode 100644 docs/virtualproperty.svg create mode 100644 docs/warning.svg diff --git a/docs/Livechart/LiveChart.Area.html b/docs/Livechart/LiveChart.Area.html index 127c771..e41df3a 100644 --- a/docs/Livechart/LiveChart.Area.html +++ b/docs/Livechart/LiveChart.Area.html @@ -40,8 +40,8 @@

Object Hierarchy:

Object hierarchy for Area - - + +

Description:

diff --git a/docs/Livechart/LiveChart.Background.html b/docs/Livechart/LiveChart.Background.html index d17026a..2fb58fc 100644 --- a/docs/Livechart/LiveChart.Background.html +++ b/docs/Livechart/LiveChart.Background.html @@ -42,8 +42,8 @@

Object Hierarchy:

Object hierarchy for Background - - + +

Description:

diff --git a/docs/Livechart/LiveChart.Bar.html b/docs/Livechart/LiveChart.Bar.html index 6af78ec..3be6a91 100644 --- a/docs/Livechart/LiveChart.Bar.html +++ b/docs/Livechart/LiveChart.Bar.html @@ -38,9 +38,9 @@

Object Hierarchy:

Object hierarchy for Bar - - - + + +

Description:

diff --git a/docs/Livechart/LiveChart.BezierCurve.c0.html b/docs/Livechart/LiveChart.BezierCurve.c0.html new file mode 100644 index 0000000..eb53eb7 --- /dev/null +++ b/docs/Livechart/LiveChart.BezierCurve.c0.html @@ -0,0 +1,47 @@ + + + + + LiveChart.BezierCurve.c0 – Livechart – Vala Binding Reference + + + + +
+ +
+

c0

+
+

Description:

+
public Coord c0 +
+
+

+ + + \ No newline at end of file diff --git a/docs/Livechart/LiveChart.BezierCurve.c1.html b/docs/Livechart/LiveChart.BezierCurve.c1.html new file mode 100644 index 0000000..38d078c --- /dev/null +++ b/docs/Livechart/LiveChart.BezierCurve.c1.html @@ -0,0 +1,47 @@ + + + + + LiveChart.BezierCurve.c1 – Livechart – Vala Binding Reference + + + + +
+ +
+

c1

+
+

Description:

+
public Coord c1 +
+
+

+ + + \ No newline at end of file diff --git a/docs/Livechart/LiveChart.BezierCurve.c2.html b/docs/Livechart/LiveChart.BezierCurve.c2.html new file mode 100644 index 0000000..9db5852 --- /dev/null +++ b/docs/Livechart/LiveChart.BezierCurve.c2.html @@ -0,0 +1,47 @@ + + + + + LiveChart.BezierCurve.c2 – Livechart – Vala Binding Reference + + + + +
+ +
+

c2

+
+

Description:

+
public Coord c2 +
+
+

+ + + \ No newline at end of file diff --git a/docs/Livechart/LiveChart.BezierCurve.c3.html b/docs/Livechart/LiveChart.BezierCurve.c3.html new file mode 100644 index 0000000..e87744b --- /dev/null +++ b/docs/Livechart/LiveChart.BezierCurve.c3.html @@ -0,0 +1,47 @@ + + + + + LiveChart.BezierCurve.c3 – Livechart – Vala Binding Reference + + + + +
+ +
+

c3

+
+

Description:

+
public Coord c3 +
+
+

+ + + \ No newline at end of file diff --git a/docs/Livechart/LiveChart.BezierCurve.html b/docs/Livechart/LiveChart.BezierCurve.html new file mode 100644 index 0000000..2b0c867 --- /dev/null +++ b/docs/Livechart/LiveChart.BezierCurve.html @@ -0,0 +1,78 @@ + + + + + LiveChart.BezierCurve – Livechart – Vala Binding Reference + + + + +
+ +
+

BezierCurve

+
+

Object Hierarchy:

+ Object hierarchy for BezierCurve + + + + + +

Description:

+
public struct BezierCurve +

+
Namespace: LiveChart +
+
Package: Livechart +
+

Content:

+

Fields:

+ +
+

+ + + \ No newline at end of file diff --git a/docs/Livechart/LiveChart.BezierIntersector.BezierIntersector.html b/docs/Livechart/LiveChart.BezierIntersector.BezierIntersector.html new file mode 100644 index 0000000..b32b759 --- /dev/null +++ b/docs/Livechart/LiveChart.BezierIntersector.BezierIntersector.html @@ -0,0 +1,45 @@ + + + + + LiveChart.BezierIntersector.BezierIntersector – Livechart – Vala Binding Reference + + + + +
+ +
+

BezierIntersector

+
+

Description:

+
public BezierIntersector (Region region, Config config) +
+
+

+ + + \ No newline at end of file diff --git a/docs/Livechart/LiveChart.BezierIntersector.html b/docs/Livechart/LiveChart.BezierIntersector.html new file mode 100644 index 0000000..46b9266 --- /dev/null +++ b/docs/Livechart/LiveChart.BezierIntersector.html @@ -0,0 +1,93 @@ + + + + + LiveChart.BezierIntersector – Livechart – Vala Binding Reference + + + + +
+ +
+

BezierIntersector

+
+

Object Hierarchy:

+ + Object hierarchy for BezierIntersector + + + + + + + +

Description:

+
public class BezierIntersector : Intersector<BezierCurve?> +

+
Namespace: LiveChart +
+
Package: Livechart +
+

Content:

+

Creation methods:

+ +

Methods:

+ +

Inherited Members:

+
+
All known members inherited from interface LiveChart.Intersector
+
+
+ +
+
+ +
+
+ +
+
+
+
+

+ + + \ No newline at end of file diff --git a/docs/Livechart/LiveChart.BezierIntersector.intersect.html b/docs/Livechart/LiveChart.BezierIntersector.intersect.html new file mode 100644 index 0000000..2133a01 --- /dev/null +++ b/docs/Livechart/LiveChart.BezierIntersector.intersect.html @@ -0,0 +1,45 @@ + + + + + LiveChart.BezierIntersector.intersect – Livechart – Vala Binding Reference + + + + +
+ +
+

intersect

+
+

Description:

+
public void intersect (Intersections intersections, Point previous, Point current, BezierCurve? path) +
+
+

+ + + \ No newline at end of file diff --git a/docs/Livechart/LiveChart.Boundaries.html b/docs/Livechart/LiveChart.Boundaries.html index 48eb5c6..83e4b3a 100644 --- a/docs/Livechart/LiveChart.Boundaries.html +++ b/docs/Livechart/LiveChart.Boundaries.html @@ -53,19 +53,19 @@

Description:

Content:

Fields:

diff --git a/docs/Livechart/LiveChart.Config.height.html b/docs/Livechart/LiveChart.Config.height.html index 277e9fa..0a0638b 100644 --- a/docs/Livechart/LiveChart.Config.height.html +++ b/docs/Livechart/LiveChart.Config.height.html @@ -33,6 +33,7 @@
  • boundaries
  • configure
  • padding
  • +
  • time
  • x_axis
  • y_axis
  • diff --git a/docs/Livechart/LiveChart.Config.html b/docs/Livechart/LiveChart.Config.html index 42378a0..3e28398 100644 --- a/docs/Livechart/LiveChart.Config.html +++ b/docs/Livechart/LiveChart.Config.html @@ -33,6 +33,7 @@
  • boundaries
  • configure
  • padding
  • +
  • time
  • x_axis
  • y_axis
  • @@ -44,7 +45,7 @@

    Object Hierarchy:

    Object hierarchy for Config - +

    Description:

    @@ -90,6 +91,10 @@

    Fields:

    +
  • public TimeSeek time + +
    +
  • public XAxis x_axis
    diff --git a/docs/Livechart/LiveChart.Config.padding.html b/docs/Livechart/LiveChart.Config.padding.html index ff6ca68..ac095a5 100644 --- a/docs/Livechart/LiveChart.Config.padding.html +++ b/docs/Livechart/LiveChart.Config.padding.html @@ -33,6 +33,7 @@
  • boundaries
  • configure
  • padding
  • +
  • time
  • x_axis
  • y_axis
  • diff --git a/docs/Livechart/LiveChart.Config.time.html b/docs/Livechart/LiveChart.Config.time.html new file mode 100644 index 0000000..c2701b0 --- /dev/null +++ b/docs/Livechart/LiveChart.Config.time.html @@ -0,0 +1,52 @@ + + + + + LiveChart.Config.time – Livechart – Vala Binding Reference + + + + +
    + +
    +

    time

    +
    +

    Description:

    +
    public TimeSeek time +
    +
    +

    + + + \ No newline at end of file diff --git a/docs/Livechart/LiveChart.Config.width.html b/docs/Livechart/LiveChart.Config.width.html index 0adca66..8bcf984 100644 --- a/docs/Livechart/LiveChart.Config.width.html +++ b/docs/Livechart/LiveChart.Config.width.html @@ -33,6 +33,7 @@
  • boundaries
  • configure
  • padding
  • +
  • time
  • x_axis
  • y_axis
  • diff --git a/docs/Livechart/LiveChart.Config.x_axis.html b/docs/Livechart/LiveChart.Config.x_axis.html index 57258c9..d51e120 100644 --- a/docs/Livechart/LiveChart.Config.x_axis.html +++ b/docs/Livechart/LiveChart.Config.x_axis.html @@ -33,6 +33,7 @@
  • boundaries
  • configure
  • padding
  • +
  • time
  • x_axis
  • y_axis
  • diff --git a/docs/Livechart/LiveChart.Config.y_axis.html b/docs/Livechart/LiveChart.Config.y_axis.html index 6622dd1..04c203a 100644 --- a/docs/Livechart/LiveChart.Config.y_axis.html +++ b/docs/Livechart/LiveChart.Config.y_axis.html @@ -33,6 +33,7 @@
  • boundaries
  • configure
  • padding
  • +
  • time
  • x_axis
  • y_axis
  • diff --git a/docs/Livechart/LiveChart.Coord.html b/docs/Livechart/LiveChart.Coord.html new file mode 100644 index 0000000..5aafd6e --- /dev/null +++ b/docs/Livechart/LiveChart.Coord.html @@ -0,0 +1,68 @@ + + + + + LiveChart.Coord – Livechart – Vala Binding Reference + + + + +
    + +
    +

    Coord

    +
    +

    Object Hierarchy:

    + Object hierarchy for Coord + + + + + +

    Description:

    +
    public struct Coord +

    +
    Namespace: LiveChart +
    +
    Package: Livechart +
    +

    Content:

    +

    Fields:

    + +
    +

    + + + \ No newline at end of file diff --git a/docs/Livechart/LiveChart.Coord.x.html b/docs/Livechart/LiveChart.Coord.x.html new file mode 100644 index 0000000..0245840 --- /dev/null +++ b/docs/Livechart/LiveChart.Coord.x.html @@ -0,0 +1,45 @@ + + + + + LiveChart.Coord.x – Livechart – Vala Binding Reference + + + + +
    + +
    +

    x

    +
    +

    Description:

    +
    public double x +
    +
    +

    + + + \ No newline at end of file diff --git a/docs/Livechart/LiveChart.Coord.y.html b/docs/Livechart/LiveChart.Coord.y.html new file mode 100644 index 0000000..596bb97 --- /dev/null +++ b/docs/Livechart/LiveChart.Coord.y.html @@ -0,0 +1,45 @@ + + + + + LiveChart.Coord.y – Livechart – Vala Binding Reference + + + + +
    + +
    +

    y

    +
    +

    Description:

    +
    public double y +
    +
    +

    + + + \ No newline at end of file diff --git a/docs/Livechart/LiveChart.CrossRegionResolver.CrossRegionResolver.html b/docs/Livechart/LiveChart.CrossRegionResolver.CrossRegionResolver.html new file mode 100644 index 0000000..980baf4 --- /dev/null +++ b/docs/Livechart/LiveChart.CrossRegionResolver.CrossRegionResolver.html @@ -0,0 +1,50 @@ + + + + + LiveChart.CrossRegionResolver.CrossRegionResolver – Livechart – Vala Binding Reference + + + + +
    + +
    +

    CrossRegionResolver

    +
    +

    Description:

    +
    public CrossRegionResolver (double floor, double ceil) +
    +
    +

    + + + \ No newline at end of file diff --git a/docs/Livechart/LiveChart.CrossRegionResolver.has_at_least_one_point_within.html b/docs/Livechart/LiveChart.CrossRegionResolver.has_at_least_one_point_within.html new file mode 100644 index 0000000..79f1fa0 --- /dev/null +++ b/docs/Livechart/LiveChart.CrossRegionResolver.has_at_least_one_point_within.html @@ -0,0 +1,50 @@ + + + + + LiveChart.CrossRegionResolver.has_at_least_one_point_within – Livechart – Vala Binding Reference + + + + +
    + +
    +

    has_at_least_one_point_within

    +
    +

    Description:

    +
    public bool has_at_least_one_point_within (Point previous, Point current) +
    +
    +

    + + + \ No newline at end of file diff --git a/docs/Livechart/LiveChart.CrossRegionResolver.html b/docs/Livechart/LiveChart.CrossRegionResolver.html new file mode 100644 index 0000000..55bf328 --- /dev/null +++ b/docs/Livechart/LiveChart.CrossRegionResolver.html @@ -0,0 +1,166 @@ + + + + + LiveChart.CrossRegionResolver – Livechart – Vala Binding Reference + + + + +
    + +
    +

    CrossRegionResolver

    +
    +

    Object Hierarchy:

    + + Object hierarchy for CrossRegionResolver + + + + + + +

    Description:

    +
    public class CrossRegionResolver : Object +

    +
    Namespace: LiveChart +
    +
    Package: Livechart +
    +

    Content:

    +

    Creation methods:

    + +

    Methods:

    + +

    Inherited Members:

    +
    +
    All known members inherited from class GLib.Object
    +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    +
    +

    + + + \ No newline at end of file diff --git a/docs/Livechart/LiveChart.CrossRegionResolver.is_entering_by_the_bottom.html b/docs/Livechart/LiveChart.CrossRegionResolver.is_entering_by_the_bottom.html new file mode 100644 index 0000000..eff5ff2 --- /dev/null +++ b/docs/Livechart/LiveChart.CrossRegionResolver.is_entering_by_the_bottom.html @@ -0,0 +1,50 @@ + + + + + LiveChart.CrossRegionResolver.is_entering_by_the_bottom – Livechart – Vala Binding Reference + + + + +
    + +
    +

    is_entering_by_the_bottom

    +
    +

    Description:

    +
    public bool is_entering_by_the_bottom (Point previous, Point current) +
    +
    +

    + + + \ No newline at end of file diff --git a/docs/Livechart/LiveChart.CrossRegionResolver.is_entering_by_the_top.html b/docs/Livechart/LiveChart.CrossRegionResolver.is_entering_by_the_top.html new file mode 100644 index 0000000..4605140 --- /dev/null +++ b/docs/Livechart/LiveChart.CrossRegionResolver.is_entering_by_the_top.html @@ -0,0 +1,50 @@ + + + + + LiveChart.CrossRegionResolver.is_entering_by_the_top – Livechart – Vala Binding Reference + + + + +
    + +
    +

    is_entering_by_the_top

    +
    +

    Description:

    +
    public bool is_entering_by_the_top (Point previous, Point current) +
    +
    +

    + + + \ No newline at end of file diff --git a/docs/Livechart/LiveChart.CrossRegionResolver.is_leaving_by_the_bottom.html b/docs/Livechart/LiveChart.CrossRegionResolver.is_leaving_by_the_bottom.html new file mode 100644 index 0000000..fc50641 --- /dev/null +++ b/docs/Livechart/LiveChart.CrossRegionResolver.is_leaving_by_the_bottom.html @@ -0,0 +1,50 @@ + + + + + LiveChart.CrossRegionResolver.is_leaving_by_the_bottom – Livechart – Vala Binding Reference + + + + +
    + +
    +

    is_leaving_by_the_bottom

    +
    +

    Description:

    +
    public bool is_leaving_by_the_bottom (Point previous, Point current) +
    +
    +

    + + + \ No newline at end of file diff --git a/docs/Livechart/LiveChart.CrossRegionResolver.is_leaving_by_the_top.html b/docs/Livechart/LiveChart.CrossRegionResolver.is_leaving_by_the_top.html new file mode 100644 index 0000000..e430b08 --- /dev/null +++ b/docs/Livechart/LiveChart.CrossRegionResolver.is_leaving_by_the_top.html @@ -0,0 +1,50 @@ + + + + + LiveChart.CrossRegionResolver.is_leaving_by_the_top – Livechart – Vala Binding Reference + + + + +
    + +
    +

    is_leaving_by_the_top

    +
    +

    Description:

    +
    public bool is_leaving_by_the_top (Point previous, Point current) +
    +
    +

    + + + \ No newline at end of file diff --git a/docs/Livechart/LiveChart.CrossRegionResolver.is_within.html b/docs/Livechart/LiveChart.CrossRegionResolver.is_within.html new file mode 100644 index 0000000..dd7af75 --- /dev/null +++ b/docs/Livechart/LiveChart.CrossRegionResolver.is_within.html @@ -0,0 +1,50 @@ + + + + + LiveChart.CrossRegionResolver.is_within – Livechart – Vala Binding Reference + + + + +
    + +
    +

    is_within

    +
    +

    Description:

    +
    public bool is_within (Point previous, Point current) +
    +
    +

    + + + \ No newline at end of file diff --git a/docs/Livechart/LiveChart.Dash.html b/docs/Livechart/LiveChart.Dash.html index 5392c4e..5d8813d 100644 --- a/docs/Livechart/LiveChart.Dash.html +++ b/docs/Livechart/LiveChart.Dash.html @@ -39,7 +39,7 @@

    Object Hierarchy:

    Object hierarchy for Dash - +

    Description:

    diff --git a/docs/Livechart/LiveChart.Drawable.html b/docs/Livechart/LiveChart.Drawable.html index b612c33..c29628d 100644 --- a/docs/Livechart/LiveChart.Drawable.html +++ b/docs/Livechart/LiveChart.Drawable.html @@ -46,24 +46,27 @@

    Description:

    public interface Drawable : Object
    -
    All known implementing classes:
    -
    +
    All known implementing classes:
    + @@ -93,8 +96,8 @@

    Methods:

    Inherited Members:

    -
    All known members inherited from class GLib.Object
    -
    +
    All known members inherited from class GLib.Object
    +

    Inherited Members:

    -
    All known members inherited from class GLib.Object
    -
    +
    All known members inherited from class GLib.Object
    +
    -
    All known members inherited from interface LiveChart.Drawable
    -
    +
    All known members inherited from interface LiveChart.Drawable
    +

    Inherited Members:

    -
    All known members inherited from class LiveChart.Legend
    -
    +
    All known members inherited from class LiveChart.Legend
    +
    -
    All known members inherited from class GLib.Object
    -
    +
    All known members inherited from class GLib.Object
    +
    -
    All known members inherited from interface LiveChart.Drawable
    -
    +
    All known members inherited from interface LiveChart.Drawable
    +
    diff --git a/docs/Livechart/LiveChart.Series.html b/docs/Livechart/LiveChart.Series.html index 3117853..5c80f0a 100644 --- a/docs/Livechart/LiveChart.Series.html +++ b/docs/Livechart/LiveChart.Series.html @@ -32,6 +32,8 @@
  • get_by_name
  • iterator
  • register
  • +
  • remove_all
  • +
  • remove_serie
  • @@ -41,7 +43,7 @@

    Object Hierarchy:

    Object hierarchy for Series - +

    Description:

    @@ -73,15 +75,23 @@

    Methods:

    -
  • public void register (Serie serie) +
  • public Serie register (Serie serie) + +
    +
  • +
  • public void remove_all () + +
    +
  • +
  • public void remove_serie (Serie serie)
  • Inherited Members:

    -
    All known members inherited from class GLib.Object
    -
    +
    All known members inherited from class GLib.Object
    +
    diff --git a/docs/Livechart/LiveChart.Series.register.html b/docs/Livechart/LiveChart.Series.register.html index 9b76a28..364db91 100644 --- a/docs/Livechart/LiveChart.Series.register.html +++ b/docs/Livechart/LiveChart.Series.register.html @@ -32,13 +32,15 @@
  • get_by_name
  • iterator
  • register
  • +
  • remove_all
  • +
  • remove_serie
  • register


    Description:

    -
    public void register (Serie serie) +
    public Serie register (Serie serie)

    diff --git a/docs/Livechart/LiveChart.Series.remove_all.html b/docs/Livechart/LiveChart.Series.remove_all.html new file mode 100644 index 0000000..19a3ffc --- /dev/null +++ b/docs/Livechart/LiveChart.Series.remove_all.html @@ -0,0 +1,50 @@ + + + + + LiveChart.Series.remove_all – Livechart – Vala Binding Reference + + + + +
    + +
    +

    remove_all

    +
    +

    Description:

    +
    public void remove_all () +
    +
    +

    + + + \ No newline at end of file diff --git a/docs/Livechart/LiveChart.Series.remove_serie.html b/docs/Livechart/LiveChart.Series.remove_serie.html new file mode 100644 index 0000000..3a28dcd --- /dev/null +++ b/docs/Livechart/LiveChart.Series.remove_serie.html @@ -0,0 +1,50 @@ + + + + + LiveChart.Series.remove_serie – Livechart – Vala Binding Reference + + + + +
    + +
    +

    remove_serie

    +
    +

    Description:

    +
    public void remove_serie (Serie serie) +
    +
    +

    + + + \ No newline at end of file diff --git a/docs/Livechart/LiveChart.SmoothLine.SmoothLine.html b/docs/Livechart/LiveChart.SmoothLine.SmoothLine.html index 46c1ca3..29ce3ac 100644 --- a/docs/Livechart/LiveChart.SmoothLine.SmoothLine.html +++ b/docs/Livechart/LiveChart.SmoothLine.SmoothLine.html @@ -27,9 +27,12 @@
    diff --git a/docs/Livechart/LiveChart.SmoothLine.draw.html b/docs/Livechart/LiveChart.SmoothLine.draw.html index 4dc8f4e..27576d7 100644 --- a/docs/Livechart/LiveChart.SmoothLine.draw.html +++ b/docs/Livechart/LiveChart.SmoothLine.draw.html @@ -27,9 +27,12 @@
    diff --git a/docs/Livechart/LiveChart.SmoothLine.draw_regions_on_line.html b/docs/Livechart/LiveChart.SmoothLine.draw_regions_on_line.html new file mode 100644 index 0000000..2661210 --- /dev/null +++ b/docs/Livechart/LiveChart.SmoothLine.draw_regions_on_line.html @@ -0,0 +1,49 @@ + + + + + LiveChart.SmoothLine.draw_regions_on_line – Livechart – Vala Binding Reference + + + + +
    + +
    +

    draw_regions_on_line

    +
    +

    Description:

    +
    protected void draw_regions_on_line (Context ctx, Config config) +
    +
    +

    + + + \ No newline at end of file diff --git a/docs/Livechart/LiveChart.SmoothLine.draw_smooth_line.html b/docs/Livechart/LiveChart.SmoothLine.draw_smooth_line.html index 34661bc..ecd77c5 100644 --- a/docs/Livechart/LiveChart.SmoothLine.draw_smooth_line.html +++ b/docs/Livechart/LiveChart.SmoothLine.draw_smooth_line.html @@ -27,16 +27,19 @@

    draw_smooth_line


    Description:

    -
    public void draw_smooth_line (Points points, Context ctx, Config config) +
    public Path draw_smooth_line (Points points, Context ctx, Config config)

    diff --git a/docs/Livechart/LiveChart.SmoothLine.html b/docs/Livechart/LiveChart.SmoothLine.html index e9dab27..9758298 100644 --- a/docs/Livechart/LiveChart.SmoothLine.html +++ b/docs/Livechart/LiveChart.SmoothLine.html @@ -27,9 +27,12 @@
    @@ -39,17 +42,17 @@

    Object Hierarchy:

    Object hierarchy for SmoothLine - - - + + +

    Description:

    public class SmoothLine : SerieRenderer
    -
    All known sub-classes:
    -
    +
    All known sub-classes:
    +
    diff --git a/docs/Livechart/LiveChart.SmoothLineArea.draw.html b/docs/Livechart/LiveChart.SmoothLineArea.draw.html index 471e0e4..d6eb5ad 100644 --- a/docs/Livechart/LiveChart.SmoothLineArea.draw.html +++ b/docs/Livechart/LiveChart.SmoothLineArea.draw.html @@ -30,6 +30,7 @@
  • area_alpha
  • SmoothLineArea
  • draw
  • +
  • draw_regions_on_area
  • diff --git a/docs/Livechart/LiveChart.SmoothLineArea.draw_regions_on_area.html b/docs/Livechart/LiveChart.SmoothLineArea.draw_regions_on_area.html new file mode 100644 index 0000000..6cbd660 --- /dev/null +++ b/docs/Livechart/LiveChart.SmoothLineArea.draw_regions_on_area.html @@ -0,0 +1,47 @@ + + + + + LiveChart.SmoothLineArea.draw_regions_on_area – Livechart – Vala Binding Reference + + + + +
    + +
    +

    draw_regions_on_area

    +
    +

    Description:

    +
    protected void draw_regions_on_area (Context ctx, Config config) +
    +
    +

    + + + \ No newline at end of file diff --git a/docs/Livechart/LiveChart.SmoothLineArea.html b/docs/Livechart/LiveChart.SmoothLineArea.html index 69e2e74..e9ea1f2 100644 --- a/docs/Livechart/LiveChart.SmoothLineArea.html +++ b/docs/Livechart/LiveChart.SmoothLineArea.html @@ -30,6 +30,7 @@
  • area_alpha
  • SmoothLineArea
  • draw
  • +
  • draw_regions_on_area
  • @@ -41,10 +42,10 @@

    Object Hierarchy:

    - - - - + + + +

    Description:

    @@ -75,30 +76,37 @@

    Methods:

    +
  • protected void draw_regions_on_area (Context ctx, Config config) + +
    +
  • Inherited Members:

    -
    All known members inherited from class LiveChart.SmoothLine
    -
    +
    All known members inherited from class LiveChart.SmoothLine
    +
    -
    All known members inherited from class LiveChart.SerieRenderer
    -
    +
    All known members inherited from class LiveChart.SerieRenderer
    +
    -
    All known members inherited from class GLib.Object
    -
    +
    All known members inherited from class GLib.Object
    +
    -
    All known members inherited from interface LiveChart.Drawable
    -
    +
    All known members inherited from interface LiveChart.Drawable
    +

    Inherited Members:

    -
    All known members inherited from class LiveChart.SerieRenderer
    -
    +
    All known members inherited from class LiveChart.SerieRenderer
    +
    -
    All known members inherited from class GLib.Object
    -
    +
    All known members inherited from class GLib.Object
    +
    -
    All known members inherited from interface LiveChart.Drawable
    -
    +
    All known members inherited from interface LiveChart.Drawable
    +

    Inherited Members:

    -
    All known members inherited from class Gee.LinkedList
    -
    +
    All known members inherited from class Gee.LinkedList
    +
    -
    All known members inherited from class Gee.AbstractBidirList
    -
    +
    All known members inherited from class Gee.AbstractBidirList
    +
    -
    All known members inherited from class Gee.AbstractList
    -
    +
    All known members inherited from class Gee.AbstractList
    +
    -
    All known members inherited from class Gee.AbstractCollection
    -
    +
    All known members inherited from class Gee.AbstractCollection
    +
    -
    All known members inherited from class GLib.Object
    -
    +
    All known members inherited from class GLib.Object
    +
    -
    All known members inherited from interface Gee.Queue
    -
    +
    All known members inherited from interface Gee.Queue
    +
    -
    All known members inherited from interface Gee.Deque
    -
    +
    All known members inherited from interface Gee.Deque
    +
    -
    All known members inherited from interface Gee.BidirList
    -
    +
    All known members inherited from interface Gee.BidirList
    +
    -
    All known members inherited from interface Gee.List
    -
    +
    All known members inherited from interface Gee.List
    +
    -
    All known members inherited from interface Gee.Traversable
    -
    +
    All known members inherited from interface Gee.Traversable
    +
    -
    All known members inherited from interface Gee.Iterable
    -
    +
    All known members inherited from interface Gee.Iterable
    +
    -
    All known members inherited from interface Gee.Collection
    -
    +
    All known members inherited from interface Gee.Collection
    +
    diff --git a/docs/Livechart/LiveChart.XAxis.axis.html b/docs/Livechart/LiveChart.XAxis.axis.html index 9f20018..65d15ca 100644 --- a/docs/Livechart/LiveChart.XAxis.axis.html +++ b/docs/Livechart/LiveChart.XAxis.axis.html @@ -35,6 +35,8 @@
  • axis
  • labels
  • lines
  • +
  • show_fraction
  • +
  • slide_timeline
  • diff --git a/docs/Livechart/LiveChart.XAxis.get_ratio.html b/docs/Livechart/LiveChart.XAxis.get_ratio.html index 187e913..87320bc 100644 --- a/docs/Livechart/LiveChart.XAxis.get_ratio.html +++ b/docs/Livechart/LiveChart.XAxis.get_ratio.html @@ -35,6 +35,8 @@
  • axis
  • labels
  • lines
  • +
  • show_fraction
  • +
  • slide_timeline
  • diff --git a/docs/Livechart/LiveChart.XAxis.html b/docs/Livechart/LiveChart.XAxis.html index 178a1ce..a9f5ce9 100644 --- a/docs/Livechart/LiveChart.XAxis.html +++ b/docs/Livechart/LiveChart.XAxis.html @@ -35,6 +35,8 @@
  • axis
  • labels
  • lines
  • +
  • show_fraction
  • +
  • slide_timeline
  • @@ -44,7 +46,7 @@

    Object Hierarchy:

    Object hierarchy for XAxis - +

    Description:

    @@ -98,6 +100,14 @@

    Fields:

    +
  • public bool show_fraction + +
    +
  • +
  • public bool slide_timeline + +
    +

  • diff --git a/docs/Livechart/LiveChart.XAxis.labels.html b/docs/Livechart/LiveChart.XAxis.labels.html index 30d4082..7a1eeff 100644 --- a/docs/Livechart/LiveChart.XAxis.labels.html +++ b/docs/Livechart/LiveChart.XAxis.labels.html @@ -35,6 +35,8 @@
  • axis
  • labels
  • lines
  • +
  • show_fraction
  • +
  • slide_timeline
  • diff --git a/docs/Livechart/LiveChart.XAxis.lines.html b/docs/Livechart/LiveChart.XAxis.lines.html index 9992e66..33f1633 100644 --- a/docs/Livechart/LiveChart.XAxis.lines.html +++ b/docs/Livechart/LiveChart.XAxis.lines.html @@ -35,6 +35,8 @@
  • axis
  • labels
  • lines
  • +
  • show_fraction
  • +
  • slide_timeline
  • diff --git a/docs/Livechart/LiveChart.XAxis.show_fraction.html b/docs/Livechart/LiveChart.XAxis.show_fraction.html new file mode 100644 index 0000000..e856946 --- /dev/null +++ b/docs/Livechart/LiveChart.XAxis.show_fraction.html @@ -0,0 +1,53 @@ + + + + + LiveChart.XAxis.show_fraction – Livechart – Vala Binding Reference + + + + +
    + +
    +

    show_fraction

    +
    +

    Description:

    +
    public bool show_fraction +
    +
    +

    + + + \ No newline at end of file diff --git a/docs/Livechart/LiveChart.XAxis.slide_timeline.html b/docs/Livechart/LiveChart.XAxis.slide_timeline.html new file mode 100644 index 0000000..ade0db1 --- /dev/null +++ b/docs/Livechart/LiveChart.XAxis.slide_timeline.html @@ -0,0 +1,53 @@ + + + + + LiveChart.XAxis.slide_timeline – Livechart – Vala Binding Reference + + + + +
    + +
    +

    slide_timeline

    +
    +

    Description:

    +
    public bool slide_timeline +
    +
    +

    + + + \ No newline at end of file diff --git a/docs/Livechart/LiveChart.XAxis.tick_interval.html b/docs/Livechart/LiveChart.XAxis.tick_interval.html index 309b2f2..124b90a 100644 --- a/docs/Livechart/LiveChart.XAxis.tick_interval.html +++ b/docs/Livechart/LiveChart.XAxis.tick_interval.html @@ -35,6 +35,8 @@
  • axis
  • labels
  • lines
  • +
  • show_fraction
  • +
  • slide_timeline
  • diff --git a/docs/Livechart/LiveChart.XAxis.tick_length.html b/docs/Livechart/LiveChart.XAxis.tick_length.html index 0aee2ff..9765654 100644 --- a/docs/Livechart/LiveChart.XAxis.tick_length.html +++ b/docs/Livechart/LiveChart.XAxis.tick_length.html @@ -35,6 +35,8 @@
  • axis
  • labels
  • lines
  • +
  • show_fraction
  • +
  • slide_timeline
  • diff --git a/docs/Livechart/LiveChart.XAxis.visible.html b/docs/Livechart/LiveChart.XAxis.visible.html index 293b416..4f8b40e 100644 --- a/docs/Livechart/LiveChart.XAxis.visible.html +++ b/docs/Livechart/LiveChart.XAxis.visible.html @@ -35,6 +35,8 @@
  • axis
  • labels
  • lines
  • +
  • show_fraction
  • +
  • slide_timeline
  • diff --git a/docs/Livechart/LiveChart.build_bezier_curve_from_points.html b/docs/Livechart/LiveChart.build_bezier_curve_from_points.html new file mode 100644 index 0000000..026d4ae --- /dev/null +++ b/docs/Livechart/LiveChart.build_bezier_curve_from_points.html @@ -0,0 +1,101 @@ + + + + + LiveChart.build_bezier_curve_from_points – Livechart – Vala Binding Reference + + + + +
    + + + \ No newline at end of file diff --git a/docs/Livechart/LiveChart.cap.html b/docs/Livechart/LiveChart.cap.html index f281946..2cf8e55 100644 --- a/docs/Livechart/LiveChart.cap.html +++ b/docs/Livechart/LiveChart.cap.html @@ -23,43 +23,61 @@

    diff --git a/docs/abstractclass.svg b/docs/abstractclass.svg new file mode 100644 index 0000000..1c3e080 --- /dev/null +++ b/docs/abstractclass.svg @@ -0,0 +1,180 @@ + + + + + + image/svg+xml + + elementary Symbolic Icon Theme + + + + elementary Symbolic Icon Theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/abstractmethod.svg b/docs/abstractmethod.svg new file mode 100644 index 0000000..891d09f --- /dev/null +++ b/docs/abstractmethod.svg @@ -0,0 +1,163 @@ + + + + + + image/svg+xml + + elementary Symbolic Icon Theme + + + + elementary Symbolic Icon Theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/abstractproperty.svg b/docs/abstractproperty.svg new file mode 100644 index 0000000..11245d8 --- /dev/null +++ b/docs/abstractproperty.svg @@ -0,0 +1,138 @@ + + + + + + image/svg+xml + + elementary Symbolic Icon Theme + + + + elementary Symbolic Icon Theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/class.svg b/docs/class.svg new file mode 100644 index 0000000..c39ba13 --- /dev/null +++ b/docs/class.svg @@ -0,0 +1,168 @@ + + + + + + image/svg+xml + + elementary Symbolic Icon Theme + + + + elementary Symbolic Icon Theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/coll_close.svg b/docs/coll_close.svg new file mode 100644 index 0000000..8ddd96b --- /dev/null +++ b/docs/coll_close.svg @@ -0,0 +1,61 @@ + + + + + + image/svg+xml + + elementary Symbolic Icon Theme + + + + elementary Symbolic Icon Theme + + + + + + + + + + + diff --git a/docs/coll_open.svg b/docs/coll_open.svg new file mode 100644 index 0000000..1cf11ae --- /dev/null +++ b/docs/coll_open.svg @@ -0,0 +1,61 @@ + + + + + + image/svg+xml + + elementary Symbolic Icon Theme + + + + elementary Symbolic Icon Theme + + + + + + + + + + + diff --git a/docs/constant.svg b/docs/constant.svg new file mode 100644 index 0000000..43cd478 --- /dev/null +++ b/docs/constant.svg @@ -0,0 +1,170 @@ + + + + + + image/svg+xml + + elementary Symbolic Icon Theme + + + + elementary Symbolic Icon Theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/constructor.svg b/docs/constructor.svg new file mode 100644 index 0000000..2f6caeb --- /dev/null +++ b/docs/constructor.svg @@ -0,0 +1,237 @@ + + + + + + image/svg+xml + + elementary Symbolic Icon Theme + + + + elementary Symbolic Icon Theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/delegate.svg b/docs/delegate.svg new file mode 100644 index 0000000..d45e57c --- /dev/null +++ b/docs/delegate.svg @@ -0,0 +1,126 @@ + + + + + + image/svg+xml + + elementary Symbolic Icon Theme + + + + elementary Symbolic Icon Theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/devhelpstyle.css b/docs/devhelpstyle.css index 1fb803d..c28cdb0 100644 --- a/docs/devhelpstyle.css +++ b/docs/devhelpstyle.css @@ -30,7 +30,7 @@ ul.external_link { min-height: 48px; background-position: 6px 0.5em; background-repeat: no-repeat; - background-image: url(warning.png); + background-image: url(warning.svg); } .main_table { @@ -168,7 +168,7 @@ div.main_notification_block { } span.main_block_headline { - background-image:url(tip.png); + background-image:url(tip.svg); background-repeat:no-repeat; background-position:center right; font-weight:bold; @@ -237,7 +237,7 @@ h3.main_title { .description a.constant, .brief_description a.constant { - background-image:url(constant.png); + background-image:url(constant.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -245,7 +245,7 @@ h3.main_title { border:0px; } .description a.namespace, .brief_description a.namespace { - background-image:url(namespace.png); + background-image:url(namespace.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -253,7 +253,7 @@ h3.main_title { border:0px; } .description a.struct, .brief_description a.struct { - background-image:url(struct.png); + background-image:url(struct.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -261,7 +261,7 @@ h3.main_title { border:0px; } .description a.interface, .brief_description a.interface { - background-image:url(interface.png); + background-image:url(interface.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -269,7 +269,7 @@ h3.main_title { border:0px; } .description a.enum, .brief_description a.enum { - background-image:url(enum.png); + background-image:url(enum.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -277,7 +277,7 @@ h3.main_title { border:0px; } .description a.errordomain, .brief_description a.errordomain { - background-image:url(errordomain.png); + background-image:url(errordomain.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -285,7 +285,7 @@ h3.main_title { border:0px; } .description a.delegate, .brief_description a.delegate { - background-image:url(delegate.png); + background-image:url(delegate.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -293,7 +293,7 @@ h3.main_title { border:0px; } .description a.signal, .brief_description a.signal { - background-image:url(signal.png); + background-image:url(signal.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -301,7 +301,7 @@ h3.main_title { border:0px; } .description a.field, .brief_description a.field { - background-image:url(field.png); + background-image:url(field.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -309,7 +309,7 @@ h3.main_title { border:0px; } .description a.enumvalue, .brief_description a.enumvalue { - background-image:url(enumvalue.png); + background-image:url(enumvalue.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -317,7 +317,7 @@ h3.main_title { border:0px; } .description a.errorcode, .brief_description a.errorcode { - background-image:url(errorcode.png); + background-image:url(errorcode.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -325,7 +325,7 @@ h3.main_title { border:0px; } .description a.class, .brief_description a.class { - background-image:url(class.png); + background-image:url(class.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -333,7 +333,7 @@ h3.main_title { border:0px; } .description a.abstract_class, .brief_description a.abstract_class { - background-image:url(abstractclass.png); + background-image:url(abstractclass.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -342,7 +342,7 @@ h3.main_title { font-style: italic; } .description a.property, .brief_description a.property { - background-image:url(property.png); + background-image:url(property.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -350,7 +350,7 @@ h3.main_title { border:0px; } .description a.virtual_property, .brief_description a.virtual_property { - background-image:url(virtualproperty.png); + background-image:url(virtualproperty.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -358,7 +358,7 @@ h3.main_title { border:0px; } .description a.abstract_property, .brief_description a.abstract_property { - background-image:url(abstractproperty.png); + background-image:url(abstractproperty.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -366,7 +366,7 @@ h3.main_title { border:0px; } .description a.method, .brief_description a.method { - background-image:url(method.png); + background-image:url(method.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -374,7 +374,7 @@ h3.main_title { border:0px; } .description a.static_method, .brief_description a.static_method { - background-image:url(staticmethod.png); + background-image:url(staticmethod.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -382,7 +382,7 @@ h3.main_title { border:0px; } .description a.virtual_method, .brief_description a.virtual_method { - background-image:url(virtualmethod.png); + background-image:url(virtualmethod.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -390,7 +390,7 @@ h3.main_title { border:0px; } .description a.abstract_method, .brief_description a.abstract_method { - background-image:url(abstractmethod.png); + background-image:url(abstractmethod.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -398,7 +398,7 @@ h3.main_title { border:0px; } .description a.creation_method, .brief_description a.creation_method { - background-image:url(constructor.png); + background-image:url(constructor.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -407,73 +407,73 @@ h3.main_title { } .navi_main .errorcode, .navi_inline .errorcode { - list-style-image:url(errorcode.png); + list-style-image:url(errorcode.svg); } .navi_main .enumvalue, .navi_inline .enumvalue { - list-style-image:url(enumvalue.png); + list-style-image:url(enumvalue.svg); } .navi_main .abstract_class, .navi_inline .abstract_class { - list-style-image: url(abstractclass.png); + list-style-image: url(abstractclass.svg); } .navi_main .abstract_method, .navi_inline .abstract_method { - list-style-image: url( abstractmethod.png ); + list-style-image: url( abstractmethod.svg ); } .navi_main .creation_method, .navi_inline .creation_method, .main_list_m { - list-style-image: url(constructor.png); + list-style-image: url(constructor.svg); } .navi_main .static_method, .navi_inline .static_method { - list-style-image: url(staticmethod.png); + list-style-image: url(staticmethod.svg); } .navi_main .package_index { - list-style-image: url(packages.png); + list-style-image: url(packages.svg); } .navi_main .virtual_method, .navi_inline .virtual_method { - list-style-image: url(virtualmethod.png); + list-style-image: url(virtualmethod.svg); } .navi_main .errordomain, .navi_inline .errordomain, .main_list_errdom { - list-style-image: url(errordomain.png); + list-style-image: url(errordomain.svg); } .navi_main .namespace, .navi_inline .namespace, .main_list_ns { - list-style-image: url(namespace.png); + list-style-image: url(namespace.svg); } .navi_main .method, .navi_inline .method { - list-style-image: url(method.png); + list-style-image: url(method.svg); } .navi_main .struct, .navi_inline .struct, .main_list_stru { - list-style-image: url(struct.png); + list-style-image: url(struct.svg); } .navi_main .interface, .navi_inline .interface, .main_list_iface { - list-style-image: url(interface.png); + list-style-image: url(interface.svg); } .navi_main .field, .navi_inline .field, .main_list_field { - list-style-image: url(field.png); + list-style-image: url(field.svg); } .navi_main .class, .navi_inline .class, .main_list_cl { - list-style-image: url(class.png); + list-style-image: url(class.svg); } .navi_main .enum, .navi_inline .enum, .main_list_en { - list-style-image: url(enum.png); + list-style-image: url(enum.svg); } .navi_main .property, .navi_inline .property, .main_list_prop { - list-style-image: url(property.png); + list-style-image: url(property.svg); } .navi_main .abstract_property, .navi_inline .abstract_property { - list-style-image: url(abstractproperty.png); + list-style-image: url(abstractproperty.svg); } .navi_main .virtual_property, .navi_inline .virtual_property { - list-style-image: url(virtualproperty.png); + list-style-image: url(virtualproperty.svg); } .navi_main .delegate, .navi_inline .delegate, .main_list_del { - list-style-image: url(delegate.png); + list-style-image: url(delegate.svg); } .navi_main .signal, .navi_inline .signal, .main_list_sig { - list-style-image: url(signal.png); + list-style-image: url(signal.svg); } .navi_main .package, .navi_inline .package { - list-style-image: url(package.png); + list-style-image: url(package.svg); } .navi_main .constant, .navi_inline .constant { - list-style-image: url(constant.png); + list-style-image: url(constant.svg); } @@ -542,7 +542,7 @@ code { .box { } .box .headline { - background-image: url("coll_open.png"); + background-image: url("coll_open.svg"); background-position: calc(100% - 1px) center; background-repeat: no-repeat; background-color: #eeeeff; diff --git a/docs/enum.svg b/docs/enum.svg new file mode 100644 index 0000000..0cd3c62 --- /dev/null +++ b/docs/enum.svg @@ -0,0 +1,304 @@ + + + + + + image/svg+xml + + elementary Symbolic Icon Theme + + + + elementary Symbolic Icon Theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/enumvalue.svg b/docs/enumvalue.svg new file mode 100644 index 0000000..984d346 --- /dev/null +++ b/docs/enumvalue.svg @@ -0,0 +1,120 @@ + + + + + + image/svg+xml + + elementary Symbolic Icon Theme + + + + elementary Symbolic Icon Theme + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/errorcode.svg b/docs/errorcode.svg new file mode 100644 index 0000000..fb1d873 --- /dev/null +++ b/docs/errorcode.svg @@ -0,0 +1,138 @@ + + + + + + image/svg+xml + + elementary Symbolic Icon Theme + + + + elementary Symbolic Icon Theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/errordomain.svg b/docs/errordomain.svg new file mode 100644 index 0000000..e1bc113 --- /dev/null +++ b/docs/errordomain.svg @@ -0,0 +1,322 @@ + + + + + + image/svg+xml + + elementary Symbolic Icon Theme + + + + elementary Symbolic Icon Theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/field.svg b/docs/field.svg new file mode 100644 index 0000000..b071a4a --- /dev/null +++ b/docs/field.svg @@ -0,0 +1,170 @@ + + + + + + image/svg+xml + + elementary Symbolic Icon Theme + + + + elementary Symbolic Icon Theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/index.html b/docs/index.html index 283bda6..780bf71 100644 --- a/docs/index.html +++ b/docs/index.html @@ -13,17 +13,16 @@ @@ -36,17 +35,16 @@

    Packages:

    diff --git a/docs/interface.svg b/docs/interface.svg new file mode 100644 index 0000000..58fc2fe --- /dev/null +++ b/docs/interface.svg @@ -0,0 +1,42 @@ + + + + + + image/svg+xml + + elementary Symbolic Icon Theme + + + + elementary Symbolic Icon Theme + + + + + + + diff --git a/docs/method.svg b/docs/method.svg new file mode 100644 index 0000000..a310e37 --- /dev/null +++ b/docs/method.svg @@ -0,0 +1,151 @@ + + + + + + image/svg+xml + + elementary Symbolic Icon Theme + + + + elementary Symbolic Icon Theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/namespace.svg b/docs/namespace.svg new file mode 100644 index 0000000..282b5c3 --- /dev/null +++ b/docs/namespace.svg @@ -0,0 +1,36 @@ + + + + + + image/svg+xml + + elementary Symbolic Icon Theme + + + + + elementary Symbolic Icon Theme + + + diff --git a/docs/package.svg b/docs/package.svg new file mode 100644 index 0000000..4ec6ad1 --- /dev/null +++ b/docs/package.svg @@ -0,0 +1,40 @@ + + + + + + image/svg+xml + + elementary Symbolic Icon Theme + + + + elementary Symbolic Icon Theme + + + + + diff --git a/docs/packages.svg b/docs/packages.svg new file mode 100644 index 0000000..f5d62dd --- /dev/null +++ b/docs/packages.svg @@ -0,0 +1,83 @@ + + + + + + image/svg+xml + + elementary Symbolic Icon Theme + + + + elementary Symbolic Icon Theme + + + + + + + + + + go-home + + + + + + + + + diff --git a/docs/property.svg b/docs/property.svg new file mode 100644 index 0000000..724345d --- /dev/null +++ b/docs/property.svg @@ -0,0 +1,126 @@ + + + + + + image/svg+xml + + elementary Symbolic Icon Theme + + + + elementary Symbolic Icon Theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/scripts.js b/docs/scripts.js index 02629ed..241d676 100644 --- a/docs/scripts.js +++ b/docs/scripts.js @@ -40,10 +40,10 @@ function toggle_box (self, id) { var orig_dir = get_path (orig_path); if (element.style.display == 'block') { element.style.display = 'none'; - self.style.backgroundImage = "url('" + orig_dir + 'coll_open.png' + "')"; + self.style.backgroundImage = "url('" + orig_dir + 'coll_open.svg' + "')"; } else { element.style.display = 'block'; - self.style.backgroundImage = "url('" + orig_dir + 'coll_close.png' + "')"; + self.style.backgroundImage = "url('" + orig_dir + 'coll_close.svg' + "')"; } } diff --git a/docs/signal.svg b/docs/signal.svg new file mode 100644 index 0000000..210ea33 --- /dev/null +++ b/docs/signal.svg @@ -0,0 +1,116 @@ + + + + + + image/svg+xml + + elementary Symbolic Icon Theme + + + + elementary Symbolic Icon Theme + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/staticmethod.svg b/docs/staticmethod.svg new file mode 100644 index 0000000..a251483 --- /dev/null +++ b/docs/staticmethod.svg @@ -0,0 +1,163 @@ + + + + + + image/svg+xml + + elementary Symbolic Icon Theme + + + + elementary Symbolic Icon Theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/struct.svg b/docs/struct.svg new file mode 100644 index 0000000..56a0e2d --- /dev/null +++ b/docs/struct.svg @@ -0,0 +1,148 @@ + + + + + + image/svg+xml + + elementary Symbolic Icon Theme + + + + elementary Symbolic Icon Theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/style.css b/docs/style.css index e49a32b..61d584c 100644 --- a/docs/style.css +++ b/docs/style.css @@ -46,7 +46,7 @@ ul.external_link { min-height: 48px; background-position: 6px 0.5em; background-repeat: no-repeat; - background-image: url(warning.png); + background-image: url(warning.svg); } .main_table { @@ -242,7 +242,7 @@ div.main_notification_block { } span.main_block_headline { - background-image:url(tip.png); + background-image:url(tip.svg); background-repeat:no-repeat; background-position:center right; font-weight:bold; @@ -329,6 +329,7 @@ h2, h3 { width: 16px; margin-right: 6px; vertical-align: middle; + padding-left: 0em !important; } .navi_main .abstract_class > a, .navi_inline .abstract_class > a { @@ -385,7 +386,7 @@ code { } .box .headline { - background-image: url("coll_open.png"); + background-image: url("coll_open.svg"); background-position: calc(100% - 1px) center; background-repeat: no-repeat; background-color: #eef; @@ -421,150 +422,188 @@ code { .abstract_class::before, .description a.abstract_class, .brief_description a.abstract_class { - background-image: url(abstractclass.png); + background-image: url(abstractclass.svg); font-style: italic; + background-repeat: no-repeat; + padding-left: 1.5em; } .abstract_method::before, .description a.abstract_method, .brief_description a.abstract_method { - background-image: url(abstractmethod.png); + background-image: url(abstractmethod.svg); + background-repeat: no-repeat; + padding-left: 1.5em; } .abstract_property::before, .description a.abstract_property, .brief_description a.abstract_property { - background-image: url(abstractproperty.png); + background-image: url(abstractproperty.svg); + background-repeat: no-repeat; + padding-left: 1.5em; } .class::before, .main_list_cl::before, .description a.class, .brief_description a.class { - background-image: url(class.png); + background-image: url(class.svg); + background-repeat: no-repeat; + padding-left: 1.5em; } .constant::before, .description a.constant, .brief_description a.constant { - background-image: url(constant.png); + background-image: url(constant.svg); + background-repeat: no-repeat; + padding-left: 1.5em; } .creation_method::before, .main_list_m::before, .description a.creation_method, .brief_description a.creation_method { - background-image: url(constructor.png); + background-image: url(constructor.svg); } .delegate::before, .main_list_del::before, .description a.delegate, .brief_description a.delegate { - background-image: url(delegate.png); + background-image: url(delegate.svg); } .document::before { - background-image: url(document.png); + background-image: url(document.svg); + background-repeat: no-repeat; + padding-left: 1.5em; } .enum::before, .main_list_en::before, .description a.enum, .brief_description a.enum { - background-image: url(enum.png); + background-image: url(enum.svg); } .enumvalue::before, .enum_value::before, .description a.enumvalue, .brief_description a.enumvalue { - background-image: url(enumvalue.png); + background-image: url(enumvalue.svg); } .errorcode::before, .description a.errorcode, .brief_description a.errorcode { - background-image: url(errorcode.png); + background-image: url(errorcode.svg); + background-repeat: no-repeat; + padding-left: 1.5em; } .errordomain::before, .main_list_errdom::before, .description a.errordomain, .brief_description a.errordomain { - background-image: url(errordomain.png); + background-image: url(errordomain.svg); + background-repeat: no-repeat; + padding-left: 1.5em; } .field::before, .main_list_field::before, .description a.field, .brief_description a.field { - background-image: url(field.png); + background-image: url(field.svg); + background-repeat: no-repeat; + padding-left: 1.5em; } .interface::before, .main_list_iface::before, .description a.interface, .brief_description a.interface { - background-image: url(interface.png); + background-image: url(interface.svg); + background-repeat: no-repeat; + padding-left: 1.5em; } .method::before, .description a.method, .brief_description a.method { - background-image: url(method.png); + background-image: url(method.svg); + background-repeat: no-repeat; + padding-left: 1.5em; } .namespace::before, .main_list_ns::before, .description a.namespace, .brief_description a.namespace { - background-image: url(namespace.png); + background-image: url(namespace.svg); + background-repeat: no-repeat; + padding-left: 1.5em; } .package::before { - background-image: url(package.png); + background-image: url(package.svg); + background-repeat: no-repeat; } .package_index::before { - background-image: url(packages.png); + background-image: url(packages.svg); + background-repeat: no-repeat; } .property::before, .main_list_prop::before, .description a.property, .brief_description a.property { - background-image: url(property.png); + background-image: url(property.svg); + background-repeat: no-repeat; + padding-left: 1.5em; } .signal::before, .main_list_sig::before, .description a.signal, .brief_description a.signal { - background-image: url(signal.png); + background-image: url(signal.svg); + background-repeat: no-repeat; + padding-left: 1.5em; } .static_method::before, .description a.static_method, .brief_description a.static_method { - background-image: url(staticmethod.png); + background-image: url(staticmethod.svg); + background-repeat: no-repeat; + padding-left: 1.5em; } .struct::before, .main_list_stru::before, .description a.struct, .brief_description a.struct { - background-image: url(struct.png); + background-image: url(struct.svg); + background-repeat: no-repeat; + padding-left: 1.5em; } .virtual_method::before, .description a.virtual_method, .brief_description a.virtual_method { - background-image: url(virtualmethod.png); + background-image: url(virtualmethod.svg); + background-repeat: no-repeat; + padding-left: 1.5em; } .virtual_property::before, .description a.virtual_property, .brief_description a.virtual_property { - background-image: url(virtualproperty.png); + background-image: url(virtualproperty.svg); + background-repeat: no-repeat; + padding-left: 1.5em; } diff --git a/docs/tip.svg b/docs/tip.svg new file mode 100644 index 0000000..0effdb1 --- /dev/null +++ b/docs/tip.svg @@ -0,0 +1,50 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/docs/virtualmethod.svg b/docs/virtualmethod.svg new file mode 100644 index 0000000..ec720df --- /dev/null +++ b/docs/virtualmethod.svg @@ -0,0 +1,163 @@ + + + + + + image/svg+xml + + elementary Symbolic Icon Theme + + + + elementary Symbolic Icon Theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/virtualproperty.svg b/docs/virtualproperty.svg new file mode 100644 index 0000000..a115d6d --- /dev/null +++ b/docs/virtualproperty.svg @@ -0,0 +1,138 @@ + + + + + + image/svg+xml + + elementary Symbolic Icon Theme + + + + elementary Symbolic Icon Theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/warning.svg b/docs/warning.svg new file mode 100644 index 0000000..180f361 --- /dev/null +++ b/docs/warning.svg @@ -0,0 +1,118 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/wikistyle.css b/docs/wikistyle.css index 459f91a..9b66ff8 100644 --- a/docs/wikistyle.css +++ b/docs/wikistyle.css @@ -29,7 +29,7 @@ ul.external_link { min-height: 48px; background-position: 6px 0.5em; background-repeat: no-repeat; - background-image: url(warning.png); + background-image: url(warning.svg); } div.main_notification_block { @@ -46,7 +46,7 @@ div.main_notification_block { } span.main_block_headline { - background-image:url(tip.png); + background-image:url(tip.svg); background-repeat:no-repeat; background-position:center right; font-weight:bold; @@ -238,22 +238,22 @@ h3.main_title { .main_inline_navigation_virtual_property { - list-style-image: url(virtualproperty.png); + list-style-image: url(virtualproperty.svg); } .main_inline_navigation_abstract_property { - list-style-image: url(abstractproperty.png); + list-style-image: url(abstractproperty.svg); } .navi_abstract_prop { - list-style-image: url(abstractproperty.png); + list-style-image: url(abstractproperty.svg); } .navi_virtual_prop { - list-style-image: url(virtualproperty.png); + list-style-image: url(virtualproperty.svg); } .css_content_link_constant { - background-image:url(constant.png); + background-image:url(constant.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -261,7 +261,7 @@ h3.main_title { border:0px; } .css_content_link_namespace { - background-image:url(namespace.png); + background-image:url(namespace.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -269,7 +269,7 @@ h3.main_title { border:0px; } .css_content_link_struct { - background-image:url(struct.png); + background-image:url(struct.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -277,7 +277,7 @@ h3.main_title { border:0px; } .css_content_link_interface { - background-image:url(interface.png); + background-image:url(interface.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -285,7 +285,7 @@ h3.main_title { border:0px; } .css_content_link_enum { - background-image:url(enum.png); + background-image:url(enum.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -293,7 +293,7 @@ h3.main_title { border:0px; } .css_content_link_errordomain { - background-image:url(errordomain.png); + background-image:url(errordomain.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -301,7 +301,7 @@ h3.main_title { border:0px; } .css_content_link_delegate { - background-image:url(delegate.png); + background-image:url(delegate.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -309,7 +309,7 @@ h3.main_title { border:0px; } .css_content_link_signal { - background-image:url(signal.png); + background-image:url(signal.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -317,7 +317,7 @@ h3.main_title { border:0px; } .css_content_link_field { - background-image:url(field.png); + background-image:url(field.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -325,7 +325,7 @@ h3.main_title { border:0px; } .css_content_link_enumvalue { - background-image:url(enumvalue.png); + background-image:url(enumvalue.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -333,7 +333,7 @@ h3.main_title { border:0px; } .css_content_link_errorcode { - background-image:url(errorcode.png); + background-image:url(errorcode.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -341,7 +341,7 @@ h3.main_title { border:0px; } .css_content_link_class { - background-image:url(class.png); + background-image:url(class.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -349,7 +349,7 @@ h3.main_title { border:0px; } .css_content_link_abstract_class { - background-image:url(abstractclass.png); + background-image:url(abstractclass.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -357,7 +357,7 @@ h3.main_title { border:0px; } .css_content_link_property { - background-image:url(property.png); + background-image:url(property.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -365,7 +365,7 @@ h3.main_title { border:0px; } .css_content_link_virtual_property { - background-image:url(virtualproperty.png); + background-image:url(virtualproperty.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -373,7 +373,7 @@ h3.main_title { border:0px; } .css_content_link_abstract_property { - background-image:url(abstractproperty.png); + background-image:url(abstractproperty.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -381,7 +381,7 @@ h3.main_title { border:0px; } .css_content_link_method { - background-image:url(method.png); + background-image:url(method.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -389,7 +389,7 @@ h3.main_title { border:0px; } .css_content_link_static_method { - background-image:url(staticmethod.png); + background-image:url(staticmethod.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -397,7 +397,7 @@ h3.main_title { border:0px; } .css_content_link_virtual_method { - background-image:url(virtualmethod.png); + background-image:url(virtualmethod.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -405,7 +405,7 @@ h3.main_title { border:0px; } .css_content_link_abstract_method { - background-image:url( abstractmethod.png ); + background-image:url( abstractmethod.svg ); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -413,7 +413,7 @@ h3.main_title { border:0px; } .css_content_link_construction_method { - background-image:url(constructor.png); + background-image:url(constructor.svg); display:inline-block; padding-right:17px; background-repeat:no-repeat; @@ -422,78 +422,78 @@ h3.main_title { } .main_inline_navigation_virtual_method { - list-style-image:url(virtualmethod.png); + list-style-image:url(virtualmethod.svg); } .main_inline_navigation_errorcode { - list-style-image:url(errorcode.png); + list-style-image:url(errorcode.svg); } .main_inline_navigation_enumvalue { - list-style-image:url(enumvalue.png); + list-style-image:url(enumvalue.svg); } .navi_abstract_class, .main_inline_navigation_abstract_class { - list-style-image: url(abstractclass.png); + list-style-image: url(abstractclass.svg); } .main_inline_navigation_abstract_method, .navi_abstract_method { - list-style-image: url( abstractmethod.png ); + list-style-image: url( abstractmethod.svg ); } .navi_construction_method, .main_list_m, .main_inline_navigation_construction_method { - list-style-image: url(constructor.png); + list-style-image: url(constructor.svg); } .navi_static_method, .main_inline_navigation_static_method { - list-style-image: url(staticmethod.png); + list-style-image: url(staticmethod.svg); } .navi_package_index, .main_inline_navigation_package { - list-style-image: url(packages.png); + list-style-image: url(packages.svg); } .main_navi_enval { - list-style-image: url(enumvalue.png); + list-style-image: url(enumvalue.svg); } .main_navi_errdomcode { - list-style-image: url(errorcode.png); + list-style-image: url(errorcode.svg); } .navi_error_domain, .main_list_errdom, .main_inline_navigation_errordomain { - list-style-image: url(errordomain.png); + list-style-image: url(errordomain.svg); } .navi_namespace, .main_list_ns, .main_inline_navigation_namespace { - list-style-image: url(namespace.png); + list-style-image: url(namespace.svg); } .navi_method, .main_inline_navigation_method { - list-style-image: url(method.png); + list-style-image: url(method.svg); } .navi_virtual_method { - list-style-image: url(virtualmethod.png); + list-style-image: url(virtualmethod.svg); } .navi_struct, .main_list_stru, .main_inline_navigation_struct { - list-style-image: url(struct.png); + list-style-image: url(struct.svg); } .navi_iface, .main_navigation_interface, .main_list_iface { - list-style-image: url(interface.png); + list-style-image: url(interface.svg); } .navi_field, .main_inline_navigation_fields, .main_list_field { - list-style-image: url(field.png); + list-style-image: url(field.svg); } .navi_class, .main_inline_navigation_class, .main_list_cl { - list-style-image: url(class.png); + list-style-image: url(class.svg); } .navi_enum, .main_list_en, .main_inline_navigation_enum { - list-style-image: url(enum.png); + list-style-image: url(enum.svg); } .navi_prop, .main_inline_navigation_property, .main_list_prop { - list-style-image: url(property.png); + list-style-image: url(property.svg); } .navi_del, .main_list_del, .main_inline_navigation_delegate { - list-style-image: url(delegate.png); + list-style-image: url(delegate.svg); } .navi_sig, .main_inline_navigation_signal, .main_list_sig { - list-style-image: url(signal.png); + list-style-image: url(signal.svg); } .navi_package, .main_inline_navigation_package { - list-style-image: url(package.png); + list-style-image: url(package.svg); } .main_inline_navigation_constant, .navi_constant { - list-style-image: url(constant.png); + list-style-image: url(constant.svg); } From 2b9d5b831086a754700e918e45e67be6c5f14719 Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Sun, 17 Dec 2023 07:50:05 +0900 Subject: [PATCH 3/3] README: Fix broken links and newlines Also, Gtk.Container no longer exists in GTK 4, so replace with another word. --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index cba4bae..c9530b4 100644 --- a/README.md +++ b/README.md @@ -25,12 +25,13 @@ - [API](#api) - [Chart widget](#chart-widget) - [Series](#series) -- [Serie renderer](#serie-renderers) +- [Serie renderers](#serie-renderers) - [Chart configuration](#chart-configuration) - [Background](#background) - [Legend](#legend) - [Chart element visibility](#chart-element-visibility) - [Advanced usages](#advanced-usages) +- [CAUTIONS](#cautions) - [How Livechart versions works ?](#how-livechart-versions-works) *N.B.: Classes and methods available in the source code and not documented here - even if they are public - are subject to change without warning in any future release* @@ -76,7 +77,7 @@ ninja -C build var chart = LiveChart.Chart(); ``` -As `Chart` object derives from `Gtk.DrawingArea`, you can directly attach it to any `Gtk.Container` : +As `Chart` object derives from `Gtk.DrawingArea`, you can directly attach it to any container widgets : ```vala var window = new Gtk.Window(); @@ -135,7 +136,7 @@ Accessing a serie can be done via : Please note that your `Serie` must have been registered to the `Chart` before being able to add data points to this serie. -Adding a point / value to a serie using [serie.add]((https://lcallarec.github.io/live-chart/Livechart/LiveChart.Serie.add.html) method automatically compute a timestamp stored in underlying value container. +Adding a point / value to a serie using [serie.add](https://lcallarec.github.io/live-chart/Livechart/LiveChart.Serie.add.html) method automatically compute a timestamp stored in underlying value container. If you need to manually compute a timestamp, in milliseconds, use [serie.add_with_timestamp(double value, int64 timestamp)](https://lcallarec.github.io/live-chart/Livechart/LiveChart.Serie.add_with_timestamp.html) ```vala @@ -169,7 +170,7 @@ serie.line.dash = Dash() {dashes = {1}, offset = 2}; serie.line.visibility = false;//or true ``` -About color : [`Gdk.RGBA`](https://valadoc.org/gtk4/Gdk.RGBA.html) struct. +About color : [`Gdk.RGBA`](https://valadoc.org/gtk4/Gdk.RGBA.html) struct. Dashes : please refer to [valadoc](https://valadoc.org/cairo/Cairo.Context.set_dash.html) and [cairo c documentation](https://www.cairographics.org/manual/cairo-cairo-t.html#cairo-set-dash) For series with area, this impact only the outline, not the area itself.