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

fix: issue620 Updated referenced versions #621

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
<PropertyGroup>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PackageId>$(AssemblyName)</PackageId>
</PropertyGroup>

<ItemGroup>
Expand All @@ -42,9 +43,9 @@

<ItemGroup>
<PackageReference Include="AngouriMath.FSharp" Version="1.4.0-preview.3" />
<PackageReference Include="Microsoft.DotNet.Interactive" Version="1.0.0-beta.21606.1" />
<PackageReference Include="Microsoft.DotNet.Interactive.Formatting" Version="1.0.0-beta.21606.1" />
<PackageReference Include="Plotly.NET" Version="2.0.0-preview.16" />
<PackageReference Include="Microsoft.DotNet.Interactive" Version="1.0.0-beta.23611.1" />
<PackageReference Include="Microsoft.DotNet.Interactive.Formatting" Version="1.0.0-beta.23611.1" />
<PackageReference Include="Plotly.NET" Version="3.0.0" />
</ItemGroup>

<ItemGroup>
Expand All @@ -55,7 +56,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Update="FSharp.Core" Version="5.0.0" />
<PackageReference Update="FSharp.Core" Version="8.0.100" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.8.34330.188
MinimumVisualStudioVersion = 10.0.40219.1
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "AngouriMath.Interactive", "AngouriMath.Interactive.fsproj", "{F6F9CE60-FDB9-484F-8700-5FD2162CE6C4}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F6F9CE60-FDB9-484F-8700-5FD2162CE6C4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F6F9CE60-FDB9-484F-8700-5FD2162CE6C4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F6F9CE60-FDB9-484F-8700-5FD2162CE6C4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F6F9CE60-FDB9-484F-8700-5FD2162CE6C4}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {984A729C-5ACD-41B4-8704-78CAFBB4FE65}
EndGlobalSection
EndGlobal
2 changes: 1 addition & 1 deletion Sources/Wrappers/AngouriMath.Interactive/Plot.fs
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ let private withSliderND<'a, 'b> n (chartPlotter : 'a -> obj -> GenericChart.Gen
|> Seq.map (fun step ->
let newFunc = compiled step
chartPlotter ranges newFunc
|> Chart.withTraceName(Visible = if step = Seq.head paramRange then StyleParam.Visible.True else StyleParam.Visible.False)
|> Chart.withTraceInfo(Visible = if step = Seq.head paramRange then StyleParam.Visible.True else StyleParam.Visible.False)
)
|> GenericChart.combine
let slider = getSlider paramRange
Expand Down