Greg Steckman
08/01/2022, 3:22 AMJohn O'Reilly
08/01/2022, 9:58 AMCould not find io.github.koalaplot:koalaplot-core:0.1.0-SNAPSHO
...John O'Reilly
08/01/2022, 10:08 AMJohn O'Reilly
08/01/2022, 10:31 AM./gradlew :library:publishToMavenLocal
but getting
Project 'library' not found in root project 'koalaplot-core'.
Greg Steckman
08/01/2022, 2:12 PM./gradlew publishToMavenLocal
instead. Thanks for letting me know about this, I've updated the readme to include the corrected command.John O'Reilly
08/01/2022, 2:16 PMJohn O'Reilly
08/01/2022, 2:18 PMsdk.dir
setting....fixed that and seems to be working nowJohn O'Reilly
08/01/2022, 2:26 PMJohn O'Reilly
08/01/2022, 7:37 PMJohn O'Reilly
08/01/2022, 7:41 PMChart(playerHistory) {
BarMark(
x: .value("Season", $0.seasonName),
y: .value("Points", $0.totalPoints)
)
}
Landry Norris
08/01/2022, 9:13 PMGreg Steckman
08/02/2022, 3:57 AMGreg Steckman
08/02/2022, 3:59 AMJohn O'Reilly
08/06/2022, 11:35 AMGreg Steckman
08/06/2022, 11:23 PMLandry Norris
08/07/2022, 1:53 AMGreg Steckman
08/10/2022, 2:12 PMJohn O'Reilly
08/10/2022, 2:21 PMJohn O'Reilly
08/10/2022, 7:32 PMChartLayout
around say XYChart
does? If I just have XYChart
for example it seems to look the same?Greg Steckman
08/11/2022, 12:46 AMChartLayout
is optional and can be used to add a title and legend to go alongside the XYChart
(or PieChart
). You could use any other approach to layout those elements alongside the chart, if wanted, since the XYChart
and PieChart
are just regular Composable functions.Greg Steckman
08/11/2022, 12:47 AMChartLayout
do nothing, so unless you explicitly provide a title and/or legend, you won't see a difference.