Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate to 3.8.0 #41

Merged
merged 6 commits into from
Mar 22, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix examples
  • Loading branch information
Alexandr Nevyantsev committed Mar 15, 2022
commit b8b05d3ea881b40dafe44f661f025bc2e4a7766c
10 changes: 2 additions & 8 deletions Example/LightweightCharts/Example/PriceLineViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,7 @@ class PriceLineViewController: UIViewController {
let options = PriceLineOptions(
price: 20,
lineWidth: .two,
lineStyle: .dotted,
lineVisible: false,
axisLabelVisible: false,
title: "asdasd"
lineStyle: .dotted
)
priceLine.applyOptions(options: options)
}
Expand Down Expand Up @@ -68,10 +65,7 @@ class PriceLineViewController: UIViewController {
price: 10,
color: "#f00",
lineWidth: .one,
lineStyle: .solid,
lineVisible: true,
axisLabelVisible: true,
title: "asdasd"
lineStyle: .solid
)
let priceLine = series.createPriceLine(options: options)
self.priceLine = priceLine
Expand Down