class Ishi::Html

Overview

Renders chart as HTML to the console.

Defined in:

ishi/html.cr

Constructors

Instance Method Summary

Instance methods inherited from class Ishi::Base

plot(ydata : Indexable(Y), title : String | Nil = nil, style : Symbol = :lines) forall Y
plot(expression : String, title : String | Nil = nil, style : Symbol | Nil = nil)
plot(xdata : Indexable(X), ydata : Indexable(Y), title : String | Nil = nil, style : Symbol = :lines) forall X, Y
plot(xdata : Indexable(X), ydata : Indexable(Y), zdata : Indexable(Z), title : String | Nil = nil, style : Symbol = :points) forall X, Y, Z
plot
, show(**options) show, xlabel(xlabel : String) xlabel, xrange(xrange : Range(Float64, Float64) | Range(Int32, Int32)) xrange, ylabel(ylabel : String) ylabel, yrange(yrange : Range(Float64, Float64) | Range(Int32, Int32)) yrange, zlabel(zlabel : String) zlabel, zrange(zrange : Range(Float64, Float64) | Range(Int32, Int32)) zrange

Constructor Detail

def self.new(io : IO = STDOUT) #

[View source]

Instance Method Detail

def show(**options) #
Description copied from class Ishi::Base

Shows the chart.


[View source]