| 
 
 NAMEChart::Clicker::Renderer::Line - Line renderer VERSIONversion 2.90 SYNOPSIS  my $lr = Chart::Clicker::Renderer::Line->new(
    brush => Graphics::Primitive::Brush->new({
      #...
    })
  );
DESCRIPTIONChart::Clicker::Renderer::Line renders a dataset as lines. ATTRIBUTESadditiveIf true, the lines are drawn "stacked", each key accumulates based on those drawn below it. brushSet/Get a brush to be used for the lines. shapeSet a shape object to draw at each of the data points. Adding a shape results in: shape_brushSet/Get the brush to be used on the shapes at each point. If no shape_brush is provided, then the shapes will be filled. The brush allows you to draw a "halo" around each shape. This sometimes help to separate the points from the lines and make them more distinct. METHODSdraw_pointCalled for each point encountered on the line. AUTHORCory G Watson <gphat@cpan.org> COPYRIGHT AND LICENSEThis software is copyright (c) 2016 by Cory G Watson. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. 
 
  |