XValues:chart.Seq[float64]{Sequence:chart.NewLinearSequence().WithStart(1.0).WithEnd(100.0)}.Values(),//generates a []float64 from 1.0 to 100.0 in 1.0 step increments, or 100 elements.
YValues:chart.Seq[float64]{Sequence:chart.NewRandomSequence().WithLen(100).WithMin(0).WithMax(100)}.Values(),//generates a []float64 randomly from 0 to 100 with 100 elements.